1

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?

MrDEV
  • 3,490
  • 1
  • 19
  • 20

1 Answers1

1

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

Community
  • 1
  • 1
Eric Lafortune
  • 45,150
  • 8
  • 114
  • 106