question about obfuscation android proguard. For some reason, when generating apk using ant, I want proguard to reduce the size (delete unused classes), but not obfuscate the name. In proguard.cfgI added:
-dontobfuscate
everyone else in proguard.cfgis either -dontwarn, or -keep class. But after decompiling the generated apk ( dex2jar), I found that many names are still confused. Why is this happening?
thank
source
share