Skip to content

Commit 73ec5b7

Browse files
Enable code minification for debug and release builds
1 parent c036a02 commit 73ec5b7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ android {
2828
}
2929
buildTypes {
3030
debug {
31+
minifyEnabled true
32+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3133
signingConfig signingConfigs.debug
3234
}
3335
release {
34-
minifyEnabled false
36+
minifyEnabled true
3537
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3638
}
3739
}

0 commit comments

Comments
 (0)