Dex to Java decompiler
Go to file
2016-03-26 17:19:54 +03:00
gradle/wrapper update gradle to 2.7 2015-10-10 14:32:10 +03:00
jadx-cli core: allow to disable constant dereference (#106) 2016-03-13 12:43:24 +03:00
jadx-core gui: support images view/unpack 2016-03-26 17:19:54 +03:00
jadx-gui gui: support images view/unpack 2016-03-26 17:19:54 +03:00
jadx-samples core: option for control escaping of unicode characters (#103) 2016-03-07 19:25:57 +03:00
jadx-test-app test: added module for check recompilation of test app 2015-10-10 14:26:23 +03:00
.gitignore core: add classpath for precise class types resolving 2013-08-01 18:19:54 +04:00
.gitmodules test: added module for check recompilation of test app 2015-10-10 14:26:23 +03:00
.travis.yml travis: tune cache options 2015-04-10 22:26:57 +03:00
build.gradle update gradle to 2.7 2015-10-10 14:32:10 +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
LICENSE add full license text file 2015-03-14 19:18:59 +03:00
NOTICE gui: support images view/unpack 2016-03-26 17:19:54 +03:00
README.md core: allow to disable constant dereference (#106) 2016-03-13 12:43:24 +03:00
settings.gradle test: added module for check recompilation of test app 2015-10-10 14:26:23 +03:00
version version 0.6.1 bump 2015-04-10 22:25:18 +03:00

JADX

Build Status Build Status Coverage Status Coverity Scan Build Status License

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
 -r, --no-res               - do not decode resources
 -s, --no-src               - do not decompile source code
     --show-bad-code        - show inconsistent code (incorrectly decompiled)
     --no-replace-consts    - don't replace constant value with matching constant field
     --escape-unicode       - escape non latin characters in strings (with \u)
     --deobf                - activate deobfuscation
     --deobf-min            - min length of name
     --deobf-max            - max length of name
     --deobf-rewrite-cfg    - force to save deobfuscation map
     --deobf-use-sourcename - use source file name as class name alias
     --cfg                  - save methods control flow graph to dot file
     --raw-cfg              - save methods control flow graph (use raw instructions)
 -f, --fallback             - make simple dump (using goto instead of 'if', 'for', etc)
 -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 2015 by Skylot