Skip to content

Instantly share code, notes, and snippets.

@veeeeeeeeeee
Last active November 18, 2017 08:16
Show Gist options
  • Save veeeeeeeeeee/aaaed4bd53bca44cdce494d0e32689bd to your computer and use it in GitHub Desktop.
Save veeeeeeeeeee/aaaed4bd53bca44cdce494d0e32689bd to your computer and use it in GitHub Desktop.
android testing commands
###### install into emulator
adb install path\to\my\apk\file.apk
###### decompile
d2j-dex2jar path\to\my\apk\file.apk
###### AndroidManifest
java -jar apktool_2.0.3.jar d path\to\my\apk\file.apk -o output
###### logs
adb logcat
###### file transfers
#push
adb push C:\path\to\my\file /sdcard/path/to/save/file
#pull
cp /androidlocation/file /sdcard/file
adb pull /sdcard/file C:\path\to\save\file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment