Friday, 21 August 2015

How to avoid reverse engineering of an APK file?

That is impossible, sorry.

However ProGuard, properly configured, will obfuscate your code. DexGuard, a commercial extended version of ProGuard, may help a bit more. However, your code can still be converted into smali, and developers with reverse-engineering experience will be able to learn what you do from that smali code.

100% avoidance of reverse engineering of the Android APK is not possible, but you can use ProGuard to obfuscate application code.

No comments:

Post a Comment