Khaled Eltrabily
Khaled Eltrabily

Reputation: 23

Flutter App doesn't connect to internet after realse

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

Answers (1)

Jun Mun
Jun Mun

Reputation: 46

Please check if you have added the following permission in AndroidManifest.xml.

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

why flutter application can't connect to internet when install app-release.apk? but normal in debug mode

Upvotes: 3

Related Questions