How to decompile an APK or DEX file on Android platform? [closed]

Is it possible to decompile an APK package or DEX file on Android platform? Are there any tools that can decompile an APK file?

3

8 Answers

You need Three Tools to decompile an APK file.

  1. Dex2jar - Tools to work with android .dex and java .class files

  2. ApkTool - A tool for reverse engineering Android apk files

  3. JD-GUI - Java Decompiler is a tools to decompile and analyze Java 5 “byte code” and the later versions.

for more how-to-use-dextojar. Hope this will help You and all! :)

6

Online APK Decompiler


APK Decompiler App for Windows

Update 2015/12/04
ClassyShark you can open APK/Zip/Class/Jar files and analyze their contents.

Update 2021/1/28

3

I have created a tool that combines dex2jar, jd-core and apktool: Just checkout the project locally and run the script as documented and you'll get all the resources and sources decompiled.

An APK is just in zip format. You can unzip it like any other .zip file.

You can decompile .dex files using the dexdump tool, which is provided in the Android SDK.

See for more dex info.

1

This website will decompile the code embedded in APK files and extract all the other assets in the file.

5

You can decompile an apk on Android device using this :

For more info look here:

EDIT: 28-02-2015

For decompiling an apk you can use this tool:

If that doesnt help check this link

5

You can also use the apktool: which will also give you the xml res files. Along with that you can also use the dex2jar system which will output the dex file in the apk to a jar file that can be opened with JD-GUI and exported to standard java files.

Also you can use Android Multitool. You can make minor changes in the app like hiding GUI elements or modifying small part of Logic and rebuild the apk. Its easy to use and decompile/recompile apk and jar files. Here is the Link you can checkout.

Cheers

You Might Also Like