Created
January 24, 2019 04:49
-
-
Save shishirthedev/3acfd617eb0d3e7e5b7d071b37597a42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildTypes { | |
debug { | |
minifyEnabled true | |
shrinkResources true | |
useProguard true | |
debuggable true | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
release { | |
minifyEnabled true // Obfuscate and minify codes | |
shrinkResources true // Remove unused resources | |
useProguard true // Remove unused codes | |
debuggable false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment