When building for android the application does not start when this package is used in your pubspec.yaml
See issue:
https://github.com/flutter/flutter/issues/174944
android/app/build.gradle like this
buildTypes {
release {
minifyEnabled false //<-modify here ,Usually it is true
signingConfig signingConfigs.debug
}
debug {
minifyEnabled false
signingConfig signingConfigs.debug
}
}
Or write the rules in
android/app/proguard-rules.pro
android/app/build.gradlelike thisbuildTypes { release { minifyEnabled false //<-modify here ,Usually it is true signingConfig signingConfigs.debug } debug { minifyEnabled false signingConfig signingConfigs.debug } } Or write the rules in
android/app/proguard-rules.pro
How do you write that in: android/app/proguard-rules.pro ?
android/app/build.gradlelike thisbuildTypes { release { minifyEnabled false //<-modify here ,Usually it is true signingConfig signingConfigs.debug } debug { minifyEnabled false signingConfig signingConfigs.debug } } Or write the rules in
android/app/proguard-rules.pro
Could you give more info what that parameter does ?