Created
May 7, 2014 02:46
-
-
Save readytopark/4c0d12820c5855ca5820 to your computer and use it in GitHub Desktop.
Decompling APK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. List all packages on Android | |
> adb shell pm list packages -f | |
2. Pulling the APK | |
> adb pull {PATH} | |
3. Decoding resource files | |
> apktool d {APK_NAME} | |
4. Decompilng classes.dex | |
> dex2jar.sh classes.dex | |
then, this outputs classes_dex2jar.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running Apps on Adb