Skip to content

Instantly share code, notes, and snippets.

@ggarber
Created September 30, 2012 15:08
Show Gist options
  • Save ggarber/3807065 to your computer and use it in GitHub Desktop.
Save ggarber/3807065 to your computer and use it in GitHub Desktop.
Download apk from google play and decompile it
#!/bin/sh
# https://github.com/egirault/googleplay-api
GOOGLEPLAY_API_PATH=/Users/ggb/software/tools/googleplay-api
# http://code.google.com/p/dex2jar/
DEX2JAR_PATH=/Users/ggb/software/tools/dex2jar-0.0.9.8
# http://www.varaneckas.com/jad/
JAD_PATH=/Users/ggb/software/tools/jad158g.mac.intel
${GOOGLEPLAY_API_PATH}/download.py $1
${DEX2JAR_PATH}/dex2jar.sh $1.apk
jar -xf $1_dex2jar.jar && find . -iname "*.class" | xargs ${JAD_PATH}/jad -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment