Reputation: 23
my flutter app is working fine in debugging mode but when I release it doesn't connect to the internet.
these are the app dependencies:
Upvotes: 1
Views: 1995
Reputation: 46
Please check if you have added the following permission in AndroidManifest.xml.
<uses-permission android:name="android.permission.INTERNET"/>
Upvotes: 3