JADX Android Apps with open source projects
- With GitHub Open source project JADX can directly decompile files directly to. Dex,. apk,. jar,. Class type
- Before comparing Apktool (unpack apk) + Dex2jar (convert. Dex to. jar) + Jd-gui (view. jar file) decompile three-piece set, the advantages of JADX are:
1. The. java file can be restored directly by a single line of command decompile
Command:jadx -d out calc.apk
You need to copy the APK to the bin directory first:
2. You can view the source code directly as a single line of commands (keep resource references, such as R.layout.activity_main)
command: jadx-gui calc.apk
requires the APK to be copied to the bin directory:
Note: You need to go to the bin directory when executing the command line, or you can configure it to run everywhere in the path.
This tool download page: Https://drone.io/github.com/skylot/jadx/files
- You can also click here to download the zip directly
- Interested can download their own github on this anti-compilation tool of the project source code to compile, detailed parameters see the page introduction.
JADX Android Apps with open source projects