Thursday, December 29, 2011

Android adb shell 報錯:more than one device and emulator


資料來源: Android adb shell 報錯:more than one device and emulator

在用adb shell 的時候,提示 more than one device and emulator,怎麼解決辦呢?

1、獲取模擬器/設備列表

adb devices

2、指定device來執行adb shell

adb -s devicename shell

例如:adb -s emulator-5554 shell

在多device的時候,執行adb命令一般都需要用參數-s指定device。例如卸載emulator-5554上的包com.soft.camera

adb -s emulator-5554 uninstall com.soft.camera

No comments: