Skip to content

Smartwatch debug over USB cable

Stella Speziali edited this page Oct 12, 2017 · 4 revisions

Connect the Android smartwatch with a USB cable to the computer. Don't forget to enable developer mode on the smartwatch.

  1. Open Terminal.

Commands

  • adb commands:
adb help
  • Check inside the terminal which Android device is/are connected:
adb devices
  • Unistall APK:
adb -d uninstall [packageName]
  • Install APK:
adb -d install -r [nameOfApplication].apk
  • Reboot the watch:
adb -d reboot
  • List all packages installed on the device:
adb shell pm list packages
  • Lauch application directly on the device:
adb shell am start -n [packageName]/[.activityName]
Clone this wiki locally