如何使用 adb 从多个连接的设备卸载 APK?
adb uninstall
在连接 1 个设备时有效。
如何才能使此功能适用于连接的 5 个以上设备?
adb uninstall <package name>
works when 1 device is connected.
How can I make this work for 5+ devices that are connected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一个简单的脚本,我用来在我的所有设备上执行 adb 命令,应该可以在 Linux 和 MacOsX 下工作。
您可能需要使其适应您的开发环境。
Here is a simple script I use to execute adb commands over all my devices , should work under Linux and MacOsX .
You might need to adapt it to your development environment .
当连接多个设备时要卸载该软件包,可以使用以下命令。
adb devices
这将输出已连接项目的列表。adb -s your_device_key uninstall your_package_name
。To uninstall the package when multiple devices are connected, you can use the following commands.
adb devices
This will output a list of connected items.adb -s your_device_key uninstall your_package_name
.您必须编写一个多次调用 adb 的脚本,并在每次运行时使用 -s 开关指定每个连接设备的序列号。
另一种方法是使用 Android Maven 插件,它可以迭代所有附加的设备(或仅模拟器或设备)。请参阅与设备交互章节在我写的《Maven:完整参考》一书中。
另外,Android Maven 插件的多设备交互也适用于推送、拉取、安装和运行测试。
You would have to write a script that calls adb multiple times and on each run it specify the serial number for each attached device with the -s switch.
An alternative is to use the Android Maven plugin which can just iterate through all attached devices (or emulators or devices only). See the interaction with devices chapter in the book Maven: The Complete Reference I wrote.
Also not that the multi device interaction of the Android Maven plugin also works for push, pull, install and running tests..
在Java中:
In JAVA:
我意识到这个问题已经有了一个可接受的答案,但是:
首先子命令:
然后外部for循环:
I realise that this question already has an accepted answer, but:
The sub-command first:
Then the outer for-loop: