README.md 7.7 KB
Newer Older
S
Skylot 已提交
1 2
<img src="https://raw.githubusercontent.com/skylot/jadx/master/jadx-gui/src/main/resources/logos/jadx-logo.png" width="64" align="left" />

S
Skylot 已提交
3
## JADX
4

5
[![Build status](https://github.com/skylot/jadx/workflows/Build/badge.svg)](https://github.com/skylot/jadx/actions?query=workflow%3ABuild)
S
Skylot 已提交
6
[![Alerts from lgtm.com](https://img.shields.io/lgtm/alerts/g/skylot/jadx.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/skylot/jadx/alerts/)
7
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
S
Skylot 已提交
8
[![Maven Central](https://img.shields.io/maven-central/v/io.github.skylot/jadx-core)](https://search.maven.org/search?q=g:io.github.skylot%20AND%20jadx)
9
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
10

S
Skylot 已提交
11 12
**jadx** - Dex to Java decompiler

13
Command line and GUI tools for producing Java source code from Android Dex and Apk files
S
Skylot 已提交
14

S
Skylot 已提交
15
:exclamation::exclamation::exclamation: Please note that in most cases **jadx** can't decompile all 100% of the code, so errors will occur. Check [Troubleshooting guide](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A#decompilation-issues) for workarounds
16

17
**Main features:**
18
- decompile Dalvik bytecode to java classes from APK, dex, aar, aab and zip files
19 20 21 22 23 24 25 26
- decode `AndroidManifest.xml` and other resources from `resources.arsc`
- deobfuscator included

**jadx-gui features:**
- view decompiled code with highlighted syntax
- jump to declaration
- find usage
- full text search
S
Skylot 已提交
27
- smali debugger, check [wiki page](https://github.com/skylot/jadx/wiki/Smali-debugger) for setup and usage
S
skylot 已提交
28

29 30
Jadx-gui key bindings can be found [here](https://github.com/skylot/jadx/wiki/JADX-GUI-Key-bindings)

31 32
See these features in action here: [jadx-gui features overview](https://github.com/skylot/jadx/wiki/jadx-gui-features-overview)

S
skylot 已提交
33
<img src="https://user-images.githubusercontent.com/118523/142730720-839f017e-38db-423e-b53f-39f5f0a0316f.png" width="700"/>
34

35
### Download
S
Skylot 已提交
36
- release from [github: ![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)](https://github.com/skylot/jadx/releases/latest)
37
- latest [unstable build](https://nightly.link/skylot/jadx/workflows/build/master)
S
skylot 已提交
38

S
Skylot 已提交
39 40
After download unpack zip file go to `bin` directory and run:
- `jadx` - command line version
41
- `jadx-gui` - UI version
S
Skylot 已提交
42 43

On Windows run `.bat` files with double-click\
S
skylot 已提交
44
**Note:** ensure you have installed Java 11 or later 64-bit version.
S
Skylot 已提交
45
For Windows, you can download it from [oracle.com](https://www.oracle.com/java/technologies/downloads/#jdk17-windows) (select x64 Installer).
46 47 48 49 50 51 52 53 54 55 56

### Install
1. Arch linux
    ```bash
        sudo pacman -S jadx
    ```
2. macOS
    ```bash
        brew install jadx
    ```

S
skylot 已提交
57 58 59
### Use jadx as a library
You can use jadx in your java projects, check details on [wiki page](https://github.com/skylot/jadx/wiki/Use-jadx-as-a-library)

60
### Build from source
S
Skylot 已提交
61
JDK 8 or higher must be installed:
62 63 64 65 66
```
git clone https://github.com/skylot/jadx.git
cd jadx
./gradlew dist
```
S
Skylot 已提交
67

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

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

S
Skylot 已提交
73 74
### Usage
```
75
jadx[-gui] [options] <input files> (.apk, .dex, .jar, .class, .smali, .zip, .aar, .arsc, .aab)
S
Skylot 已提交
76
options:
77 78 79 80 81
  -d, --output-dir                    - output directory
  -ds, --output-dir-src               - output directory for sources
  -dr, --output-dir-res               - output directory for resources
  -r, --no-res                        - do not decode resources
  -s, --no-src                        - do not decompile source code
82
  --single-class                      - decompile a single class
83
  --output-format                     - can be 'java' or 'json', default: java
84
  -e, --export-gradle                 - save as android gradle project
85
  -j, --threads-count                 - processing threads count, default: 4
86 87 88
  --show-bad-code                     - show inconsistent code (incorrectly decompiled)
  --no-imports                        - disable use of imports, always write entire package name
  --no-debug-info                     - disable debug info
89
  --add-debug-lines                   - add comments with debug line numbers if available
90
  --no-inline-anonymous               - disable anonymous classes inline
91
  --no-inline-methods                 - disable methods inline
92 93 94 95
  --no-replace-consts                 - don't replace constant value with matching constant field
  --escape-unicode                    - escape non latin characters in strings (with \u)
  --respect-bytecode-access-modifiers - don't change original access modifiers
  --deobf                             - activate deobfuscation
96 97
  --deobf-min                         - min length of name, renamed if shorter, default: 3
  --deobf-max                         - max length of name, renamed if longer, default: 64
98
  --deobf-cfg-file                    - deobfuscation map file, default: same dir and name as input file with '.jobf' extension
99
  --deobf-rewrite-cfg                 - force to ignore and overwrite deobfuscation map file
100
  --deobf-use-sourcename              - use source file name as class name alias
101
  --deobf-parse-kotlin-metadata       - parse kotlin metadata to class and package names
102
  --use-kotlin-methods-for-var-names  - use kotlin intrinsic methods to rename variables, values: disable, apply, apply-and-hide, default: apply
103 104 105 106 107 108
  --rename-flags                      - fix options (comma-separated list of):
                                         'case' - fix case sensitivity issues (according to --fs-case-sensitive option),
                                         'valid' - rename java identifiers to make them valid,
                                         'printable' - remove non-printable chars from identifiers,
                                        or single 'none' - to disable all renames
                                        or single 'all' - to enable all (default)
109
  --fs-case-sensitive                 - treat filesystem as case sensitive, false by default
110 111 112
  --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)
113
  --use-dx                            - use dx/d8 to convert java bytecode
114
  --comments-level                    - set code comments level, values: error, warn, info, debug, user-only, none, default: info
115
  --log-level                         - set log level, values: quiet, progress, error, warn, info, debug, default: progress
116 117
  -v, --verbose                       - verbose output (set --log-level to DEBUG)
  -q, --quiet                         - turn off output (set --log-level to QUIET)
118 119
  --version                           - print jadx version
  -h, --help                          - print this help
120 121 122 123 124
Examples:
  jadx -d out classes.dex
  jadx --rename-flags "none" classes.dex
  jadx --rename-flags "valid, printable" classes.dex
  jadx --log-level ERROR app.apk
S
Skylot 已提交
125
```
S
Skylot 已提交
126
These options also worked on jadx-gui running from command line and override options from preferences dialog
S
Skylot 已提交
127

S
Skylot 已提交
128
### Troubleshooting
129 130 131 132 133 134 135 136
Please check wiki page [Troubleshooting Q&A](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A)

### Contributing
To support this project you can:
  - Post thoughts about new features/optimizations that important to you
  - Submit decompilation issues, please read before proceed: [Open issue](CONTRIBUTING.md#Open-Issue)
  - Open pull request, please follow these rules: [Pull Request Process](CONTRIBUTING.md#Pull-Request-Process)

S
Skylot 已提交
137
---------------------------------------
S
Skylot 已提交
138
*Licensed under the Apache 2.0 License*