-
Notifications
You must be signed in to change notification settings - Fork 3
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.
- Open Terminal.
- 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]