android: ADB错误“more than one device and emulator”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android: ADB错误“more than one device and emulator”相关的知识,希望对你有一定的参考价值。

启动模拟器调试,执行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的进程!
如果第一条没有用,才考虑用第二条命令再试试看的!

以上是关于android: ADB错误“more than one device and emulator”的主要内容,如果未能解决你的问题,请参考以下文章

gzip: stdin has more than one entry--rest ignored

result returns more than one elements 异常错误

More than one file was found with OS independent path ‘lib/armeabi-v7a/xxx.so‘

ex14 Python运行提示错误need more than 1 value to unpack

ex14 Python运行提示错误need more than 1 value to unpack

python爬虫错误:http.client.HTTPException: got more than 100 headers的解决方法