Reputation: 3760
I am using Dexguard to obfuscate my application, but i was wondering why it is not obfuscating the names of Activity classes. Is there any way to obfuscates these names?
Upvotes: 1
Views: 798
Reputation: 45676
DexGuard won't obfuscate names of activity classes that are exported, because the Android runtime treats them as public API. See How to obfuscate a class which is referenced in Manifest file using Dexguard?.
Upvotes: 1