Answers for "when i build apk in flutter not working api"

1

http flutter package not working when i build apk

<uses-permission android:name="android.permission.INTERNET" />
Posted by: Guest on June-05-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 "Dart"

Browse Popular Code Answers by Language