What is the use and meaning of following code of block?
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
What is the use and meaning of following code of block?
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
Using this code block you can configure your build.gradle
file for proguard implementation and Flag minifyEnabled
stays for ProGuard, and it's turned off by default.
check this for more informations minifyEnabled, ProGuard and What is minifyEnabled