I'm trying to test the App, but I'm wondering which option actually enables obfuscation.
if minifyEnabled
is false
, will the files still be obfuscated?
buildTypes {
debug {
// minifyEnabled true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
release {
// minifyEnabled true
// shrinkResources true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro',
'proguard-fresco.pro.txt'
}
}