error more than one devices and emulator】的更多相关文章

问题秒速 莫名的多了一个设备,然后再输入adb shell 解决方法: 1.如果确实有多种设备,要指定设备号 adb -s 设备号 shell(设备号在这里是 emulator-5554,其他同理) 2.没有多种设备,莫名的出现一个 adb kill-server  杀adb的服务 taskkill /f /im adb.exe  杀adb进程 优先使用第一个…
adb shell error: more than one device and emulator 本文转载出处: http://blog.sina.com.cn/s/blog_7ffb8dd50100wvrb.html 指定所连接的设备 1.获取设备列表 adb devices 2.指定device来执行adb shell adb -s devicename shell 重新启动服务 1.重启adb.exe服务 adb start-server 2.关闭adb.exe 如果重启没有用,就尝试…
error: more than one device and emulator 如果出现上面那种情况 请关闭  ide 输入下面的  再次重新启动 模拟器 如果实际上只有一个设备或模拟器,并且查到有offline的状态:那就说明是ADB本身的BUG所导致的,就需要用如下的方法处理下了:C:\Users\gaojs>adb kill-serverC:\Users\gaojs>taskkill /f /im adb.exe第一条命令是杀ADB的服务,第二条命令是杀ADB的进程!如果第一条没有用,…
第一种情况:确实用多个设备或者模拟器 解决办法:(指定连接某一个设备或者模拟器) 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 unins…
当我连着手机充电的时候,启动模拟器调试,执行ADB指令时,报错.C:\Users\gaojs>adb shellerror: more than one device and emulatorC:\Users\gaojs>adb install e:\good.apkerror: more than one device and emulator 碰到这种情况,首先要查一下,是不是真的有多个设备或模拟器.C:\Users\gaojs>adb devicesList of devices…
启动模拟器调试,执行ADB指令时,报错.C:\Users\gaojs>adb shellerror: more than one device and emulatorC:\Users\gaojs>adb install e:\good.apkerror: more than one device and emulator 碰到这种情况,首先要查一下,是不是真的有多个设备或模拟器.C:\Users\gaojs>adb devicesList of devices attachedemul…
当我连着手机充电的时候,启动模拟器调试,执行ADB指令时,报错.C:\Users\gaojs>adb shellerror: more than one device and emulatorC:\Users\gaojs>adb install e:\good.apkerror: more than one device and emulator 碰到这种情况,首先要查一下,是不是真的有多个设备或模拟器.C:\Users\gaojs>adb devicesList of devices…
在做Android开发时经常出现android adb devices offline,解决办法如下: 1 重启adb服务 adb kill-server adb start-server linux下别忘了以root身份运行 2 上一步无效的情况下,将手机USB调试关闭后再次打开,重新执行上一步 3 仍旧不行的话,重启手机 4 到这步不行的话只能重启电脑了 5 有时候是数据线的问题,需要换一根数据线就好了 来看看monkey常见问题和解决办法吧! 1.编译app里面的源码时,有时候由于模拟器闲…
当我连着手机充电的时候,启动模拟器调试,运行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 d…
C:\Users\root>adb install d:\rry_0514.apkerror: more than one device and emulator- waiting for device -error: protocol fault (status read) # Kill and restart      $ adb kill-server      $ adb start-server      daemon not running. starting it now *   …