MrDEV
MrDEV

Reputation: 3760

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?

Upvotes: 1

Views: 798

Answers (1)

Eric Lafortune
Eric Lafortune

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

Related Questions