README.md 3.6 KB
Newer Older
S
Skylot 已提交
1
## JADX
2 3 4 5

[![Build Status](https://travis-ci.org/skylot/jadx.png?branch=master)](https://travis-ci.org/skylot/jadx)
[![Build Status](https://drone.io/github.com/skylot/jadx/status.png)](https://drone.io/github.com/skylot/jadx/latest)
[![Coverage Status](https://coveralls.io/repos/skylot/jadx/badge.png)](https://coveralls.io/r/skylot/jadx)
S
Skylot 已提交
6
[![Coverity Scan Build Status](https://scan.coverity.com/projects/2166/badge.svg)](https://scan.coverity.com/projects/2166)
S
Skylot 已提交
7
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
8

S
Skylot 已提交
9 10
**jadx** - Dex to Java decompiler

S
Skylot 已提交
11
Command line and GUI tools for produce Java source code from Android Dex and Apk files
S
Skylot 已提交
12

S
Skylot 已提交
13
![jadx-gui screenshot](http://skylot.github.io/jadx/jadx-gui.png)
S
skylot 已提交
14

S
skylot 已提交
15
### Downloads
S
Skylot 已提交
16 17
- [unstable](https://drone.io/github.com/skylot/jadx/files)
- from [github](https://github.com/skylot/jadx/releases)
S
Skylot 已提交
18
- from [sourceforge](http://sourceforge.net/projects/jadx/files/)
S
skylot 已提交
19

S
Skylot 已提交
20

S
Skylot 已提交
21
### Building from source
S
Skylot 已提交
22 23
    git clone https://github.com/skylot/jadx.git
    cd jadx
S
Skylot 已提交
24
    ./gradlew dist
S
Skylot 已提交
25

S
skylot 已提交
26
(on Windows, use `gradlew.bat` instead of `./gradlew`)
S
Skylot 已提交
27

S
Skylot 已提交
28 29 30
Scripts for run jadx will be placed in `build/jadx/bin`
and also packed to `build/jadx-<version>.zip`

S
Skylot 已提交
31 32 33 34

### Run
Run **jadx** on itself:

S
Skylot 已提交
35
    cd build/jadx/
S
Skylot 已提交
36 37
    bin/jadx -d out lib/jadx-core-*.jar
    #or
S
Skylot 已提交
38 39
    bin/jadx-gui lib/jadx-core-*.jar

S
Skylot 已提交
40 41 42

### Usage
```
S
Skylot 已提交
43
jadx[-gui] [options] <input file> (.dex, .apk, .jar or .class)
S
Skylot 已提交
44
options:
45 46 47 48
 -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
S
Skylot 已提交
49
 -e, --export-gradle        - save as android gradle project
50
     --show-bad-code        - show inconsistent code (incorrectly decompiled)
51 52
     --no-replace-consts    - don't replace constant value with matching constant field
     --escape-unicode       - escape non latin characters in strings (with \u)
53 54 55 56 57
     --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
58 59 60 61
     --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
62
 -h, --help                 - print this help
S
Skylot 已提交
63 64 65 66
Example:
 jadx -d out classes.dex
```

S
Skylot 已提交
67 68
### Troubleshooting
##### Out of memory error:
S
Skylot 已提交
69
  - Reduce processing threads count (`-j` option)
S
Skylot 已提交
70
  - Increase maximum java heap size:
S
Skylot 已提交
71
    * command line (example for linux):
S
Skylot 已提交
72 73 74 75
      `JAVA_OPTS="-Xmx4G" jadx -j 1 some.apk`
    * edit 'jadx' script (jadx.bat on Windows) and setup bigger heap size:
      `DEFAULT_JVM_OPTS="-Xmx2500M"`

S
skylot 已提交
76 77 78 79 80 81 82 83 84

### 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

S
Skylot 已提交
85 86
And any other comments will be very helpfull,
because at current stage of development it is very time consuming
S
skylot 已提交
87 88 89
to **find** new bugs, design and implement new features.
Also I need to **prioritize** these task for complete most important at first.

S
Skylot 已提交
90
---------------------------------------
S
Skylot 已提交
91 92
*Licensed under the Apache 2.0 License*

S
Skylot 已提交
93
*Copyright 2015 by Skylot*