1

I know that there is a way to get some kind of source code from an android apk. (according to Is there a way to get the source code from an APK file?) How can I prevent other people from getting source code from my apk? Is it possible?

Thanks alot, Keren :-)

Community
  • 1
  • 1

2 Answers2

6

Enable ProGuard for your application. ant will call ProGuard to obfuscate your code. More details are here: http://developer.android.com/tools/help/proguard.html

StenaviN
  • 3,687
  • 24
  • 34
1

Yes You can do obfuscation for you app http://proguard.sourceforge.net/index.html#FAQ.html

J.K
  • 2,290
  • 1
  • 18
  • 29