This is an old revision of the document!
ADB Magic
- find out the package name:
adb shell pm list packages
- get the path of the package:
adb shell pm path com.example.someapp
- pull the apk from the device:
adb pull /data/app/com.example.someapp-2.apk
==== Inside the shell (if you want)
- list packages:
pm list packages
- run app:
monkey -p my.great.package.name 1