CHEAT SHEET
*Check if device is recognized by adb
adb devices
*Kill/Restart (sometimes helps with connection issues)
adb kill-server
*Un/Install APKS
adb install APKNAME.apk
adb uninstall APKNAME.apk
adb install -r APKNAME.apk
adb uninstall -r APKNAME.apk
for %f in (C:\your_app_path\*.apk): adb install "%f"
*Log Grab - ensure device is hooked up and recognized by adb
adb logcat -v long > XX.txt
*Record Screen - this does not record audio, can record both orientations but try to stick to one during length of recording. Otherwise recording is cut off
adb shell screenrecord /sdcard/XXXX.mp4
adb shell screenrecord --bit-rate 100000000 /sdcard/XXXX.mp4
*List Packages on Device
adb shell
cd /system/vendor/app
ls *.apk
ls -l
adb shell pm list packages
*Set Date/Time
adb shell date -s 20150709.000000
Hacky Ways to check where app is installed & how to remove system apps
List all packages installed: pm list packages -f'
Get Full path:
adb shell pm path com.example.someapp