android: ADB錯誤“more than one device and emulator”

yufan發表於2016-03-01

啟動模擬器除錯,執行ADB指令時,報錯。
C:\Users\gaojs>adb shell
error: more than one device and emulator
C:\Users\gaojs>adb install e:\good.apk
error: more than one device and emulator

碰到這種情況,首先要查一下,是不是真的有多個裝置或模擬器。
C:\Users\gaojs>adb devices
List of devices attached
emulator-5554   device
4dfadcb86b00cf05        device
發現還真是多個裝置,那就需要為ADB命令指定裝置的序列號了。
C:\Users\gaojs>adb -s emulator-5554 shell
也就是如上所示,給命令加上-s的引數就可以了!

如果實際上只有一個裝置或模擬器,並且查到有offline的狀態;
那就說明是ADB本身的BUG所導致的,就需要用如下的方法處理下了:
C:\Users\gaojs>adb kill-server
C:\Users\gaojs>taskkill /f /im adb.exe
第一條命令是殺ADB的服務,第二條命令是殺ADB的程式!
如果第一條沒有用,才考慮用第二條命令再試試看的!

相關文章