Search code examples
androidflutterpermissionsandroid-manifest

Getting internet permission in flutter app


I'm new to flutter and I'm in a situation to get internet permission for our flutter app which we are developing, we've used permission_handler for handling permissions. We also accessed microphone permission and it worked well. but can't get the internet permission request.

And I want to know whether internet permission(But I've mentioned in the Manifest.xml file) is not mandatory or not?


Solution

  • just write this in your Anroidmanifest.xml in android module in flutter project:

    <uses-permission android:name="android.permission.INTERNET" />