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 - disable debugging from adb:
settings put global adb_enabled 0
Inside the shell (if you want)
- list packages:
pm list packages - run app:
monkey -p my.great.package.name 1