Search code examples
obfuscationandroid-securitydexguard

Is there any way to obfuscate Activity name using Dexguard?


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?


Solution

  • 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?.