Are the users able to convert the apk file of my application back to the actual code? If they do - is there any way to prevent this?

link|improve this question

There are several methods of decompiling APK. I just APKTool more often, its the best and most powerful. Its very easy to modify apk files with it. – geeknizer Mar 6 '11 at 17:41
feedback

2 Answers

up vote 42 down vote accepted

First, an apk file is just a modified jar file. So the real question is can they decompile the dex files inside. The answer is sort of. There are already disassemblers, such as dedexer and smali. You can expect these to only get better, and theoretically it should eventually be possible to decompile to actual Java source (at least sometimes). See the previous question decompiling DEX into Java sourcecode.

What you should remember is obfuscation never works. Choose a good license and do your best to enforce it through the law. Don't waste time with unreliable technical measures.

link|improve this answer
12  
Never say never. Obfuscation will not stop a determined thief but it will slow down or deter many others. Processing with Proguard is an easy and RELIABLE way to obfuscate your code and as a bonus it will optimize it too. And it's included in the Android SDK, so it's endorsed by Google. – Barry Fruitman Jul 26 '11 at 19:39
Obfuscation definitely works, but you have to more clearly define what your goal is. Obviously the only way you could ever keep your source code truly safe is to never give anyone access to it, server or client. Note that Proguard doesn't work well on classes that have references in XML files. You need to utilize manual obfuscation to get around that. – MattC Jan 3 at 22:57
feedback

Android Reverse Engineering is possible . But it might be difficult to understand the osbfucated code.

ApkTool to view resources inside APK File

  • Extracts AndroidManifest.xml and everything in res folder(layout xml files, images, htmls used on webview etc..)
  • command : apktool.bat d sampleApp.apk
  • NOTE: You can achieve this by using zip utility like 7-zip. But, It also extracts the .smali file of all .class files.

Using dex2jar

  • Generates .jar file from .apk file, we need JD-GUI to view the source code from this .jar.
  • command : dex2jar sampleApp.apk

Decompiling .jar using JD-GUI

  • decompiles the .class files (obsfucated- in case of android app, but readable original code is obtained in case of other .jar file). i.e., we get .java back from the application.
link|improve this answer
apktool does not spit out java source files! Only smali – Igor G. Apr 30 at 18:43
1  
as i already said in the answer, apktool creates .jar from .apk and we have to use JD-GUI like tool to decompile .jar to achieve .java source files. – gt_ebuddy Apr 30 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.