How can one decompile Android DEX (VM bytecode) files into corresponding Java source code?
-
Have a look [here](http://mylifewithandroid.blogspot.com/2009/01/disassembling-dex-files.html). You will get possible leads from there to move on. – Kevin Boyd Aug 09 '09 at 06:47
-
Updated info is available on coders hub blog: http://www.coders-hub.com/2013/04/how-to-convert-apk-file-into-source.html – Md Mohsin Sep 23 '15 at 07:31
-
If you have money, buy [jeb](https://www.pnfsoftware.com/), otherwise use [jadx](https://github.com/skylot/jadx), see [here](http://stackoverflow.com/a/28864945/3739455) why – polym Nov 03 '15 at 07:42
-
There is a new cross plateform (java) and open source tool, that enable you to do that, just checkout bytecodeviewer : http://stackoverflow.com/a/36557898/795245 – Gomino Apr 11 '16 at 19:48
17 Answers
It's easy
Get these tools:
The source code is quite readable as dex2jar makes some optimizations.
Procedure:
And here's the procedure on how to decompile:
Step 1:
Convert classes.dex in test_apk-debug.apk to test_apk-debug_dex2jar.jar
d2j-dex2jar.sh -f -o output_jar.jar apk_to_decompile.apk
d2j-dex2jar.sh -f -o output_jar.jar dex_to_decompile.dex
Note 1: In the Windows machines all the
.sh
scripts are replaced by.bat
scripts
Note 2: On linux/mac don't forget about
sh
orbash
. The full command should be:
sh d2j-dex2jar.sh -f -o output_jar.jar apk_to_decompile.apk
Note 3: Also, remember to add execute permission to
dex2jar-X.X
directory e.g.sudo chmod -R +x dex2jar-2.0
Step 2:
Open the jar in JD-GUI
-
64+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 05:58
-
1hi, Will you please share the way you are going? I will be very thankful to you. – Arslan Anwar 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
-
3The above sentence rang a bell - it seems to be a semi-quote from here: http://geeknizer.com/decompile-reverse-engineer-android-apk/ (or the other way around?). The linked articles briefly explains the above mentioned tools as well as Smali and APKTool. – AgentKnopf Jan 19 '12 at 09:38
-
3@JonathanDumaine that depends. If the JARs are obfuscated and you want to do little modifications, Backsmali is the only way to go. **Bonus!** With APKTool you also get all the XMLs, images and other resources back. See [my answer](http://stackoverflow.com/a/8792985/710951). – Alba Mendez Aug 30 '12 at 11:15
-
3@JonathanDumaine I agree with jmendeth, apktool is also the way to go if you want to decompile your apk, modify it and then recompile it. While using dex2jar and jd-gui the source are really readable but you can't recompile whitout some errors! – darkheir Sep 10 '12 at 10:13
-
If you don't like using jd-gui for the interface, you can follow instructions to save the java file hierarchy to a folder of your choice: http://stackoverflow.com/a/1384652/198348 – Ehtesh Choudhury Apr 28 '13 at 18:16
-
why do you need the step 1? when you can just rename the .apk to .zip and open? But yes 2nd step is required as it is in compiled classes and we need to decompile to source code – srikanth Nutigattu Jan 18 '17 at 14:34
-
@JonathanDumaine well it's 2019 and **Dex2Jar+JD-Gui** sometimes fails to convert whole class files. Even earlier it could get convert all files and all parts of file. So **BAKSMALI** should be better. You need **BAKSMALI/SMALI** anyway if want to made some patches to applicaiton. **Dex2Jar+JD-Gui** is just for reading (to try understand at least something of source code), not patching – user25 Jan 27 '19 at 17:25
-
I'm sorry I mistakenly downvoted this answer and I tried to reverse it but failed. I wanted to up-vote the answer but ended up voting it down due to a technical or hardware issue(Sensor problem) with my phone. **The answer is really helpful** – afhamu Sep 27 '20 at 22:16
-
Is it possible to use dex2jar directly inside Android app ? Meaning I develop an Android app that uses it? – android developer Jan 09 '21 at 00:12
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.
If you go the smali route, you might want to try APK Studio, an IDE that automates some of the above steps to assist you with decompiling and recompiling an apk and installing it on a device.
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, the suggestion of dare is also of note. It's a retargeting tool to convert .dex and .apk files to java .class files, so that they can be analyzed using typical java static analysis tools.

- 1
- 1

- 1,850
- 1
- 14
- 28
I'd actually recommend going here: https://github.com/JesusFreke/smali
It provides BAKSMALI, which is a most excellent reverse-engineering tool for DEX files. It's made by JesusFreke, the guy who created the fameous ROMs for Android.

- 2,096
- 1
- 20
- 37

- 7,587
- 1
- 42
- 47
-
3smali 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](http://stackoverflow.com/questions/5582824/decompile-smali-files-on-an-apk) for more info. – Alba Mendez Jan 09 '12 at 18:03
-
1Code, code, code, ... Why only code? If you use APKTool you get _everything_ back! And it's as simple as `./apktool d myprogram.apk`. See [my answer](http://stackoverflow.com/a/8792985/710951). – Alba Mendez Aug 30 '12 at 11:14
Since Dheeraj Bhaskar
's answer is relatively old as many years past.
Here is my latest (2019 year) answer:
Main Logic
from dex
to java sourcecode
, currently has two kind of solution:
One Step
: directly convertdex
tojava sourcecode
Two Step
: first convertdex
tojar
, second convertjar
tojava sourcecode
One step solution: dex
directly to java sourcecode
Tools
Process
- download jadx-0.9.0.zip, unzip it, in
bin
folder can see command linejadx
or GUI versionjadx-gui
, double click to run GUI version:jadx-gui
- open
dex
file
then can show java source code:
File
->save as gradle project
then got java sourcecode:
Two Step solution
Step1: dex
to jar
Tools
Process
download dex2jar zip, unzip got d2j-dex2jar.sh
, then:
apk
tojar
:sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk
dex
tojar
:sh d2j-dex2jar.sh -f ~/path/to/dex_to_decompile.dex
example:
➜ v3.4.8 /Users/crifan/dev/dev_tool/android/reverse_engineering/dex-tools/dex-tools-2.1-SNAPSHOT/d2j-dex2jar.sh -f com.huili.readingclub8825612.dex
dex2jar com.huili.readingclub8825612.dex -> ./com.huili.readingclub8825612-dex2jar.jar
➜ v3.4.8 ll
-rw------- 1 crifan staff 9.5M 3 21 10:00 com.huili.readingclub8825612-dex2jar.jar
-rw------- 1 crifan staff 8.4M 3 19 14:04 com.huili.readingclub8825612.dex
Step2: jar
to java sourcecode
Tools
- jd-gui: most popular, but
many
code will decompile error - CRF: popular,
minor
code will decompile error - Procyon: popular,
no
code decompile error- GUI tool based on
Procyon
- GUI tool based on
- others
- Krakatau
- Fernflower
- old one: AndroChef
- etc.
Process
here demo Procyon
convert jar to java source code:
download procyon-decompiler-0.5.34.jar
then using syntax:
java -jar /path/to/procyon-decompiler-0.5.34.jar -jar your_to_decompile.jar -o outputFolderName
example:
java -jar /Users/crifan/dev/dev_tool/android/reverse_engineering/Procyon/procyon-decompiler-0.5.34.jar -jar com.huili.readingclub8825612-dex2jar.jar -o com.huili.readingclub8825612
using editor VSCode to open exported source code, look like this:
Conclusion
Conversion correctness : Jadx
> Procyon
> CRF
> JD-GUI
Recommend use: (One step solution's) Jadx
for more detailed explanation, please refer my online Chinese ebook: 安卓应用的安全和破解

- 12,947
- 1
- 71
- 56
-
strange, but if I try to execute 1 step (dex to jar decompile on Windows) via this command `dex2jar-2.0>d2j-dex2jar.bat -f D:\android\some_dex_file.dex` just got exception: `java.io.IOException: the src file not a .dex or zip file` – Сергей Aug 28 '19 at 10:01
-
@Сергей could you try : `d2j-dex2jar.bat "D:\android\some_dex_file.dex"` is ok or not ? – crifan Aug 28 '19 at 10:09
-
yes, I tried exactly `>d2j-dex2jar.bat file.dex` but it's not ok. maybe it's because my `.dex` file was copied from `dalvik-cache` ? – Сергей Aug 28 '19 at 10:13
-
1@Сергей yes, the most possible reason is your said `dex is copied from dalvik-cache`, should be `dex is decompiled from apk` – crifan Aug 30 '19 at 02:14
-
@crifan, thanks for this answer. JADX is impressive. i'll back to work. Emmanuel@JD-Gui – Emmanuel Dupuy Jan 26 '20 at 11:33
-
as on 27 aug 2020, jadx-gui supports direct apk file(even without extracting dex from it first). its an open source project, so community making it better and better. – MbPCM Aug 27 '20 at 15:55
-
1
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 automatically 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.
Disassembly will always be more robust than decompiling, especially with
JARs obfuscated with Pro Guard!
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.

- 1
- 1

- 4,432
- 1
- 39
- 55
Sometimes you get broken code, when using dex2jar
/apktool
, most notably in loops. To avoid this, use jadx, which decompiles dalvik bytecode into java source code, without creating a .jar
/.class
file first as dex2jar
does (apktool uses dex2jar I think). It is also open-source and in active development. It even has a GUI, for GUI-fanatics. Try it!

- 628
- 1
- 14
- 26
-
I suppose jadx doesn't have compile option but the code is readable though – Buddy Aug 18 '15 at 14:02
-
-
how about forming an apk ? placing classes in apk, zipalign, signing etc. – Buddy Aug 18 '15 at 14:25
-
@EnesBattal Well you can help implement that - otherwise you could use apktool for that.. or zipalign/sign with the android tools – polym Aug 20 '15 at 10:35
-
This answer makes it sound like it doesn't ever use the dex2jar tool, but instead decompiles directly from dex to java source code. Is that really the case? If so, then how is it also able to open normal desktop jar files? (just tried and it works) Does it have a separate decompiler for dex and jars? – Venryx Feb 14 '17 at 02:20
-
-
Wow bro, dex2jar code was not tangible to me, but shown in jadx gui looks pretty good. It didn't even fail, unlike some Illegal exception coming with dex2jar. Thanks! – Abhishek Jan 26 '22 at 14:24
I have used
- dex2jar + jd-gui
- javadecompilers.com
- enjarify
- Apktool
But none beats google's own tools

- 16,676
- 16
- 93
- 129
-
2Plus one for Enjarify. In my personal experience, it has proven to give better results as compared to d2j – qre0ct Sep 25 '18 at 04:04
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

- 2,664
- 1
- 18
- 7
-
It looks promising. Does it decompile Java code directly form the APK? What about obfuscated Java code? – sandalone Oct 22 '11 at 18:00
Once you downloaded your APK file , You need to do the following steps to get a editable java code/document.
- 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...
- Extract the zip file , there you can find somefilename.dex. so now we need to convert dex -> .class
- 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.)
- 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)
- 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.

- 20,267
- 14
- 135
- 196

- 131
- 1
- 2
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.

- 24,554
- 15
- 75
- 102
-
But if i compile again all the decompiled source code,it wil not run ,compiler shows a lot errors. – Feb 18 '12 at 07:04
-
is there any solution available for decompile android java source code will run in eclipse – Feb 18 '12 at 07:16
-
2**Reverse Engineering** does _not_ necessarily mean **decompiling**. In fact, ProGuard-obfuscated JARs won't decompile correctly. – Alba Mendez Aug 08 '12 at 15:48
-
If you are dealing with Obfuscated code, it's better to just **dissassemble** it. You won't get Java source, but you _always_ will be able to see/modify the code. See [my answer](http://stackoverflow.com/a/8792985/710951). – Alba Mendez Aug 30 '12 at 11:12
-
I would recommend doing both decompiling and disassembling. The resulting decompiled code is easier to understand but all modifications needs to be done with disassemblied version. Especially true if proguard has been used. I find that dex2jar combined with jd-gui is the best for decompiling. – Mikko Rantalainen Jul 08 '15 at 12:08
-
-
1accepted since you're the one saying that it isn't (currently) possible, which seems true. – Will Jun 18 '10 at 08:49
-
@Will everything is possible. Just depends on how you see it. Decompiling *is* possible, but maybe not the way you are thinking of. – Alba Mendez Dec 03 '12 at 08:41
Recent Debian have Python package androguard
:
Description-en: full Python tool to play with Android files
Androguard is a full Python tool to play with Android files.
* DEX, ODEX
* APK
* Android's binary xml
* Android resources
* Disassemble DEX/ODEX bytecodes
* Decompiler for DEX/ODEX files
Install corresponding packages:
sudo apt-get install androguard python-networkx
Decompile DEX file:
$ androdd -i classes.dex -o ./dir-for-output
Extract classes.dex
from Apk + Decompile:
$ androdd -i app.apk -o ./dir-for-output
Apk file is nothing more that Java archive (JAR), you may extract files from archive via:
$ unzip app.apk -d ./dir-for-output

- 45,285
- 19
- 251
- 303
A lot has changed since most of these answers were posted. Now-a-days there a are many easy tools with GUI's, like these:
APK Easy Tool for Windows (GUI tool, friendly)
Bytecode Viewer - APK/Java Reverse Engineering Suite
URET Android Reverser Toolkit
Best place to find them is on the XDA Developers forum.

- 1,491
- 14
- 19
You might try JADX (https://bitbucket.org/mstrobel/procyon/wiki/Java%20Decompiler), this is a perfect tool for DEX decompilation.
And yes, it is also available online on (my :0)) new site: http://www.javadecompilers.com/apk/

- 959
- 11
- 16
-
Say, can it be used in code instead? Meaning even in Android itself? And isn't the website here: https://github.com/skylot/jadx ? – android developer Mar 14 '20 at 23:11
This can be done in following five steps:
This gem does these things for you automatically even the installation of required tools
- convert apk file to zip
- unzip the file
- extract classes.dex from it
- use dex to jar to convert classes.dex into jar file
- use jadx gui to open the jar file as java source code

- 2,436
- 23
- 27
Easiest method to decompile an android app is to download an app named ShowJava from playstore . Just select the application that needs to be decompiled from the list of applications. There are three different decompiler you can use to decompile an app namely -
CFR 0.110, JaDX 0.6.1 or FernFlower (analytical decompiler) .

- 1,448
- 3
- 22
- 40
If you're not looking to download dex2jar, then just use the apk_grabber
python script to decompile any apk into jar files. Then you read them with jd-gui.

- 3,229
- 2
- 20
- 26