1

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?

4

2 回答 2

9

就像任何 Android 设备一样,您可以使用adb。从命令行:

adb uninstall com.your.package.name

如果连接了多个设备,请获取它们的名称,adb devices然后使用:

adb -s device-name uninstall com.your.package.name
于 2015-01-16T00:55:16.773 回答
1

作为记录,您还可以从手表中删除人脸,如下所示

  1. 通过 usd 将您的主机电话连接到具有 Android SDK 的计算机
  2. 在shell模式下执行adbadb shell
  3. pm uninstall com.your.package_name

这将从手机手表中删除包
非常适合您弄乱 APK 签名而使包名称保持不变的情况。

于 2015-05-15T07:32:44.050 回答