piks
piks

Reputation: 1673

How to verfiy whether my application apk is properly obfuscated or not?

I have obfuscated my android application using Proguard on Eclipse, now I have to verify whether it has properly obfuscated all classes, methods and members or not.

Can someone please provide me some input how to do this verification?

Upvotes: 2

Views: 2035

Answers (1)

Ben Weiss
Ben Weiss

Reputation: 17932

You can use the apktool to reverse engineer your application and check whether everything is obfuscated as expected.

Upvotes: 5

Related Questions