-1
How to make the correct configuration of proguard
, bringing better security, smaller size and deleting classes when you want or when creating problems?
Basically enable default settings in changing minifyEnabled
for true
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
What already makes the basics. Now what to do to optimize? The use of proguard ?