How to make the right configuration of proguard
, bringing better security, smaller size, and deleting classes when you want or when creating problems?
I basically enable the default settings by changing minifyEnabled
to true
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
What already does the basics. Now what to do to optimize? Using proguard?