One-click tool for extracting apk files.
- apktools (http://ibotpeaches.github.io/Apktool/)
- dex2jar (https://github.com/pxb1988/dex2jar)
- procyon (https://bitbucket.org/mstrobel/procyon)
- Unpack apk file for resources, libraries, assests, etc.
- Baksmali dex.
- Convert dex to jar and decompile it.
- wget
- unzip
- java
./install.sh
./extract.sh App.apk
./build.sh App/unpacked/ New.apk
Note: apk file name must end with .apk
If you extract Example.apk
, then a directory Example
is created.
Example/
classes.jar - the app's code converted to jar.
src/ - java code generated by the decompiler.
unpacked/ - unpacked resources, libraries, smali codes.
If you are running it under x64 os and have error with build.sh
, try:
apt-get install lib32z1 lib32stdc++6