0

I was reading this article about decompilation of .apk file into java code...my question is how can i prevent it from decompilation? here is the link of that article

1 Answers1

1

http://developer.android.com/tools/help/proguard.html.

Enable proguard in release mode

The ProGuard tool shrinks, optimizes, and obfuscates your code by removing unused code and renaming classes, fields, and methods with semantically obscure names. The result is a smaller sized .apk file that is more difficult to reverse engineer.

Also check the answer by commonsware in the below link

How to avoid reverse engineering of an APK file?

here's an example

http://proguard.sourceforge.net/index.html#manual/examples.html

Community
  • 1
  • 1
Raghunandan
  • 132,755
  • 26
  • 225
  • 256