I'm looking to uninstall a custom watch face from a running emulator without resorting to wiping the emulator and rebooting. Which ADB commands might I send to the emulator to perform this task?
Asked
Active
Viewed 2,731 times
2 Answers
9
Just like any Android device, you can use adb. From a command line:
adb uninstall com.your.package.name
If multiple devices are connected, get their names with adb devices
and then use:
adb -s device-name uninstall com.your.package.name

RedBassett
- 3,469
- 3
- 32
- 56

ianhanniballake
- 191,609
- 30
- 470
- 443
1
For the record, you can also delete a face from a watch as follows
- Hook your host phone via usd to a computer with Android SDK
- execute adb in shell mode
adb shell
pm uninstall com.your.package_name
This will remove the package from the phone and the watch
Ideal for situations where you messed your APK signature leaving package name unchanged.

MonoThreaded
- 11,429
- 12
- 71
- 102