Answers for "flutter in release apk internet is not working"

3

flutter apk internet not working in mobile

//Open the AndroidManifest.xml file located at ./android/app/src/main 
//and add the following line:
<manifest xmlns:android="...">
  <uses-permission android:name="android.permission.INTERNET"/>
</manifast>
Posted by: Guest on August-21-2021
0

release apk not working flutter

add a proguard file and fix it.

1. On your app level build.gradle add this to your buildTypes > release section
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2. Along the build.gradle file create a proguard-rules.pro file and add:
-keep class io.flutter.plugin.editing.** { *; }
Posted by: Guest on May-19-2021

Code answers related to "flutter in release apk internet is not working"

Browse Popular Code Answers by Language