Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

to disable the shrinker pass the --no-shrink flag to this command. in flutter

// in android/app/build.gradle add following:
buildTypes {
    release {
        signingConfig signingConfigs.debug
    }
    debug {
        minifyEnabled true
        signingConfig signingConfigs.debug
    }
}
 
PREVIOUS NEXT
Tagged: #disable #shrinker #pass #flag #flutter
ADD COMMENT
Topic
Name
6+5 =