Answers for "release apk not working flutter"

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 "release apk not working flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language