Commit b3fa8dbe authored by skylot's avatar skylot

Add build status to readme

parent 8eae4236
## About ## JADX [![Build Status](https://buildhive.cloudbees.com/job/skylot/job/jadx/badge/icon)](https://buildhive.cloudbees.com/job/skylot/job/jadx/)
**jadx** - Dex to Java decompiler **jadx** - Dex to Java decompiler
Command line tool for produce Java sources from Android Dex and Jar files
### Downloads ### Downloads
Latest version available at Latest version available at
[sourceforge](http://sourceforge.net/projects/jadx/files/) [sourceforge](http://sourceforge.net/projects/jadx/files/)
...@@ -8,13 +10,12 @@ or ...@@ -8,13 +10,12 @@ or
[bintray](http://bintray.com/pkg/show/general/skylot/jadx/jadx-cli) [bintray](http://bintray.com/pkg/show/general/skylot/jadx/jadx-cli)
### Build ### Build
jadx uses [gradle](http://www.gradle.org/) for build:
git clone https://github.com/skylot/jadx.git git clone https://github.com/skylot/jadx.git
cd jadx cd jadx
./gradlew build ./gradlew build
(on windows, use `gradlew.bat` instead of `./gradlew`) (on Windows, use `gradlew.bat` instead of `./gradlew`)
Scripts for run jadx will be placed in `build/install/jadx/bin` Scripts for run jadx will be placed in `build/install/jadx/bin`
and also packed to `build/distributions/jadx-<version>.zip` and also packed to `build/distributions/jadx-<version>.zip`
...@@ -27,12 +28,11 @@ Run **jadx** on itself: ...@@ -27,12 +28,11 @@ Run **jadx** on itself:
### Usage ### Usage
``` ```
jadx [options] <input files> (.dex, .apk, .jar or .class) jadx [options] <input files> (.dex, .apk or .jar)
options: options:
-d, --output-dir - output directory -d, --output-dir - output directory
-j, --threads-count - processing threads count -j, --threads-count - processing threads count
-f, --fallback - make simple dump (using goto instead of 'if', 'for', etc) -f, --fallback - make simple dump (using goto instead of 'if', 'for', etc)
--not-obfuscated - set this flag if code not obfuscated
--cfg - save methods control flow graph --cfg - save methods control flow graph
--raw-cfg - save methods control flow graph (use raw instructions) --raw-cfg - save methods control flow graph (use raw instructions)
-v, --verbose - verbose output -v, --verbose - verbose output
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment