Dex to Java decompiler
Go to file
2013-11-15 11:00:01 -08:00
gradle/wrapper reformat code, resolve compiler warnings 2013-09-24 21:59:32 +04:00
jadx-cli code refactoring 2013-09-25 18:07:14 +04:00
jadx-core core: fix to 4f61ddd 2013-11-15 22:31:44 +04:00
jadx-gui reformat code, resolve compiler warnings 2013-09-24 21:59:32 +04:00
jadx-samples core: process complex condition in loop header 2013-11-12 21:00:05 +04:00
.gitignore core: add classpath for precise class types resolving 2013-08-01 18:19:54 +04:00
.travis.yml build: add 'dist' task 2013-09-28 15:51:45 +04:00
build.gradle build: add 'dist' task 2013-09-28 15:51:45 +04:00
gradlew Add gradle files 2013-03-18 21:05:00 +04:00
gradlew.bat Add gradle files 2013-03-18 21:05:00 +04:00
NOTICE gui: add fields and methods to tree 2013-07-23 23:01:48 +04:00
README.md build: add 'dist' task 2013-09-28 15:51:45 +04:00
settings.gradle fix gradle scripts, update readme 2013-07-24 17:40:49 +04:00
version Update gradle build files 2013-07-10 23:47:45 +04:00

JADX

jadx - Dex to Java decompiler

Command line and GUI tools for produce Java source code from Android Dex files

Note: jadx-gui now in experimental stage

Downloads

Latest version available at github or sourceforge

Build Build Status

git clone https://github.com/skylot/jadx.git
cd jadx
./gradlew dist

(on Windows, use gradlew.bat instead of ./gradlew)

Scripts for run jadx will be placed in build/jadx/bin and also packed to build/jadx-<version>.zip

Run

Run jadx on itself:

cd build/jadx/
bin/jadx -d out lib/jadx-core-*.jar
#or
bin/jadx-gui lib/jadx-core-*.jar

Usage

jadx[-gui] [options] <input file> (.dex, .apk or .jar)
options:
 -d, --output-dir    - output directory
 -j, --threads-count - processing threads count
 -f, --fallback      - make simple dump (using goto instead of 'if', 'for', etc)
     --cfg           - save methods control flow graph to dot file
     --raw-cfg       - save methods control flow graph (use raw instructions)
 -v, --verbose       - verbose output
 -h, --help          - print this help
Example:
 jadx -d out classes.dex

Licensed under the Apache 2.0 License

Copyright 2013 by Skylot