解决ADB错误“more than one device and emulator”_error: more than one device and emulator
作者:小丑西瓜9 | 2024-03-29 17:44:03
赞
踩
error: more than one device and emulator
如果手机和虚拟机同时连接电脑,当你在cmd中输入以下命令时: C:\Users\909844>adb shell error: more than one device and emulator C:\Users\909844>adb remount error: more than one device and emulator 碰到这种情况,说明当前任务栈中有多个设备或模拟器。 C:\Users\909844>adb devices List of devices attached emulator-5554 device emulator-5552 device 发现还真是多个设备,那就需要为ADB命令指定设备的序列号了。 C:\Users\909844>adb -s emulator-5554 shell