我运行了多个Android模拟器,以及连接到同一台机器的设备。
我想知道如何从命令提示符连接到单个模拟器/设备。
例如:adb shell emulator-5554
但这不起作用。
答案 0 :(得分:8)
您应该使用-s
开关:
adb -s emulator-5554 shell
答案 1 :(得分:5)
使用命令
adb devices
您将获得所有已连接设备的列表,例如:
$ adb devices
List of devices attached
emulator-5554 device
emulator-5556 device
emulator-5558 device
然后您可以正常运行所有命令,但必须附加-s选项 e.g。
adb -s emulator-5556 install helloWorld.apk
如果您想了解更多有关adb的信息,请查看tutorial。
答案 2 :(得分:0)
adb connect xx.xx.xx.xx
adb disconnect xx.xx.xx.xx
它可以是X86仿真器;)