背景
多个 android 设备连接,需要卸载指定设备上的 app 时,如何使用 adb 选择并卸载?
方法
adb -s xxxx uninstall com.xx.xx
如果不知道具体包名,可以使用 adb shell pm list packages
,列出所有的包名。
参考
ADB 学习(3):adb uninstall 命令
https://blog.csdn.net/weixin_38374974/article/details/83590695
多个 android 设备连接,需要卸载指定设备上的 app 时,如何使用 adb 选择并卸载?
adb -s xxxx uninstall com.xx.xx
如果不知道具体包名,可以使用 adb shell pm list packages
,列出所有的包名。
ADB 学习(3):adb uninstall 命令
https://blog.csdn.net/weixin_38374974/article/details/83590695