Proguard doesnt obfuscate Class name, only methods are obfuscated

Viewed 13820

I try using Proguard in android studio, but seems like Proguard is not obfuscating the class name, for example, my app structure, and the config:

enter image description here

and config

enter image description here

but when i try trigger the exception in the app:

enter image description here

the exception is listed in ADB console:

enter image description here

only the methods are obfuscated, the MainActivity.class is not

2 Answers
Related