Dex to Java decompiler
Go to file
2014-11-29 16:08:29 +03:00
gradle/wrapper update gradle and dependencies 2014-11-29 16:08:29 +03:00
jadx-cli core: add 'show inconsistent code' parameter 2014-09-20 13:43:55 +04:00
jadx-core update gradle and dependencies 2014-11-29 16:08:29 +03:00
jadx-gui update gradle and dependencies 2014-11-29 16:08:29 +03:00
jadx-samples core: fix resolving the instance field in the 2nd and more nested inner class 2014-09-02 20:05:15 +04:00
.gitignore core: add classpath for precise class types resolving 2013-08-01 18:19:54 +04:00
.travis.yml travis: add jdk8 to build matrix 2014-09-22 22:34:44 +04:00
build.gradle update gradle and dependencies 2014-11-29 16:08:29 +03: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 add ASM to NOTICE file 2014-08-15 22:38:50 +04:00
README.md add contribution section to readme 2014-08-19 23:25:25 +04:00
settings.gradle travis: cache dependencies 2014-07-29 23:41:10 +04:00
version bump version 2014-11-09 16:48:21 +03:00

JADX

Build Status Build Status Coverage Status Coverity Scan Build Status

jadx - Dex to Java decompiler

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

jadx-gui screenshot

Downloads

Building from source

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, .jar or .class)
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

Troubleshooting

Out of memory error:
  • Reduce processing threads count (-j option)
  • Increase maximum java heap size:
    • command line (example for linux): JAVA_OPTS="-Xmx4G" jadx -j 1 some.apk
    • edit 'jadx' script (jadx.bat on Windows) and setup bigger heap size: DEFAULT_JVM_OPTS="-Xmx2500M"

Contribution

To support this project you can:

  • Post thoughts about new features/optimizations that important to you
  • Submit bug using one of following patterns:
    • Java code examples which decompiles incorrectly
    • Error log and link to public available apk file or app page on Google play

And any other comments will be very helpfull, because at current stage of development it is very time consuming to find new bugs, design and implement new features. Also I need to prioritize these task for complete most important at first.


Licensed under the Apache 2.0 License

Copyright 2014 by Skylot