Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?

link|improve this question

74% accept rate
Have a look here and here. You will get possible leads from there to move on. – Kevin Boyd Aug 9 '09 at 6:47
The second link you posted seems broken. – jmendeth Jan 14 at 17:59
feedback

10 Answers

up vote 161 down vote accepted

first you need a tool called dex2jar ,which is made by a chinese student. it will translate dex to jar file. then you can use jd-gui, the source code is quite readable as dex2jar makes some optimizations.

link|improve this answer
1  
that is a great find! – Reflog Dec 22 '10 at 14:07
4  
+1. I tried both Baksmali and Dex2jar. Dex2Jar+JD-Gui wins for giving you perfectly readable source code for most .dex files. – Jonathan Dumaine Jan 22 '11 at 5:58
hi, Will you please share the way you are going? I will be very thankful to you. – Arslan Mar 22 '11 at 12:45
The code I got back from JD-GUI was very odd (some activities were split up into multiple activities like Activity$1 Activity$2 etc). It took a little work to unscramble, but much less than starting all over! – Snailer Jul 14 '11 at 21:34
this is some insane stuff +1 for u – Jianhong Nov 18 '11 at 10:08
show 1 more comment
feedback

i'd actually recommend going here: http://code.google.com/p/smali/

it provides BAKSMALI which is a most excellent reverse-engeneering tool for DEX files. made by JesusFreke, the guy who created the famos ROMs for Android.

link|improve this answer
Is there any way convert smali files to java code? – endryha Nov 12 '10 at 13:59
2  
smali is an assembly-like language based on dalvik IL, it cannot be directly translated to Java. – Reflog Nov 15 '10 at 12:39
@endryha There are no tools capable of doing that. See this question for more info. – jmendeth Jan 9 at 18:03
feedback

Refer this blog it clearly show decompile process step by step androidorigin.blogspot.com

link|improve this answer
4  
this is an awesome tutorial! And up to date too – Someone Somewhere Mar 8 '11 at 6:59
feedback

To clarify somewhat, there are two major paths you might take here depending on what you want to accomplish:

Decompile the Dalvik bytecode (dex) into readable Java source. You can do this easily with dex2jar and jd-gui, as fred mentions. The resulting source is useful to read and understand the functionality of an app, but will likely not produce 100% usable code. In other words, you can read the source, but you can't really modify and repackage it. Note that if the source has been obfuscated with proguard, the resulting source code will be substantially more difficult to untangle.

The other major alternative is to disassemble the bytecode to smali, an assembly language designed for precisely this purpose. I've found that the easiest way to do this is with apktool. Once you've got apktool installed, you can just point it at an apk file, and you'll get back a smali file for each class contained in the application. You can read and modify the smali or even replace classes entirely by generating smali from new Java source (to do this, you could compile your .java source to .class files with javac, then convert your .class files to .dex files with Android's dx compiler, and then use baksmali (smali disassembler) to convert the .dex to .smali files, as described in this question. There might be a shortcut here). Once you're done, you can easily package the apk back up with apktool again. Note that apktool does not sign the resulting apk, so you'll need to take care of that just like any other Android application.

In short, your choices are pretty much either to decompile into Java, which is more readable but likely irreversible, or to disassemble to smali, which is harder to read but much more flexible to make changes and repackage a modified app. Which approach you choose would depend on what you're looking to achieve.

Lastly, phaeton's suggestion of ded is also of note. I didn't have much luck with a quick attempt compared to the tools above, but it may become more useful in this regard as it continues to evolve.

link|improve this answer
feedback

Since no one mentioned this, there's one more tool: DED homepage

Install how-to and some explanations: Installation.

It was used in a quite interesting study of the security of top market apps(not really related, just if you're curious): A Survey of Android Application Security

link|improve this answer
It looks promising. Does it decompile Java code directly form the APK? What about obfuscated Java code? – sandalone Oct 22 '11 at 18:00
feedback

With Dedexer, you can disassemble the .dex file into dalvik bytecode (.ddx).

Decompiling towards Java isn't possible as far as I know.
You can read about dalvik bytecode here.

link|improve this answer
1  
accepted since you're the one saying that it isn't (currently) possible, which seems true. – Will Jun 18 '10 at 8:49
feedback

A more complete version of fred's answer:

Manual way

First you need a tool to extract all the (compiled) classes on the DEX to a JAR.
There's one called dex2jar, which is made by a chinese student.

Then, you can use jd-gui to decompile the classes on the JAR to source code.
The resulting source should be quite readable, as dex2jar applies some optimizations.

Automatic way

You can use APKTool. It will automaticly extract all the classes (.dex), resources (.asrc), then it will convert binary XML to human-readable XML, and it will also dissassemble the classes for you.

Just tell APKTool to decode the APK into a directory, then modify what you want,
and finally encode it back to an APK. That's all.

Important: APKTool dissassembles. It doesn't decompile.
The generated code won't be Java source.
But you should be able to read it, and even edit it if you're familiar with jasmin.
If you want Java source, please go over the Manual way.

link|improve this answer
feedback

Android Reverse Engineering is possible . Follow these steps to get .java file from apk file.

Step1 . Using dex2jar

  • Generate .jar file from .apk file
  • command : dex2jar sampleApp.apk

Step2 . Decompiling .jar using JD-GUI

  • it decompiles the .class files i.e., we'll get obfuscated .java back from the apk.
link|improve this answer
But if i compile again all the decompiled source code,it wil not run ,compiler shows a lot errors. – user1129139 Feb 18 at 7:04
this is due to obfuscation – gt_ebuddy Feb 18 at 7:08
is there any solution available for decompile android java source code will run in eclipse – user1129139 Feb 18 at 7:16
obfuscation that means – user1129139 Feb 18 at 7:19
see this : en.wikipedia.org/wiki/Obfuscated_code – gt_ebuddy Feb 18 at 9:15
feedback

Once you downloaded your APK file , You need to do the following steps to get a editable java code/document.

1 -> Convert your apk file to zip (while start your download don't go with "save" option , just go with "save as" and mention your extension as .zip) by doing like this you may avoid APKTOOL...

2 -> Extract the zip file , there you can find somefilename.dex. so now we need to convert dex -> .class

3 -> To do that, you need "dex2jar"(you can download it from http://code.google.com/p/dex2jar/ , after extracted, in command prompt you have to mention like, [D:\dex2jar-0.09>dex2jar somefilename.dex] (Keep in mind that your somefilename.dex must be inside the same folder where you have keep your dex2jar.)

4 -> Download jad from http://www.viralpatel.net/blogs/download/jad/jad.zip and extract it. Once extracted you can see two files like "jad.exe" and "Readme.txt" (sometimes "jad.txt" may there instead of "jad.exe", so just rename its extension as.exe to run)

5 -> Finally, in command prompt you have to mention like [D:\jad>jad -sjava yourfilename.class] it will parse your class file into editable java document.

Thanks

link|improve this answer
feedback

To decompile a DEX file into Java you can use AndroChef Java Decompiler: http://www.neshkov.com/ac_decompiler.html

link|improve this answer
If you are affiliated with the product, you must disclose it – Leigh May 16 at 21:42
feedback

protected by Bo Persson May 17 at 1:06

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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