问题 :
运行adb命令报错error: more than one device and emulator
事情:
今天想通过adb命令查看一下应用的内存使用情况,使用命令:adb shell dumpsys meminfo。结果报错。
E:\Software\andriod_eclipse\sdk\platform-tools>adb shell dumpsys meminfo
error: more than one device and emulator
错误的原因很显然,有多个设备或者模拟器存在。因为我的手机插在电脑上,所以我立即拔掉运行命令,果然正常。不甘心啊,看看还有别的办法么,百度了一下,果真有啊!可参考(http://blog.sina.com.cn/s/blog_7ffb8dd50100wvrb.html)指定设备运行。
解决方案:
1.kill一个设备
2.指定设备运行
E:\Software\andriod_eclipse\sdk\platform-tools>adb-s emulator-5554 shell dumpsys meminfo
本文介绍了在使用ADB命令时遇到“error: more than one device and emulator”错误的原因及解决方法。作者尝试查看应用内存使用情况时遇到此问题,并提供了两种解决方案:一是断开多余设备连接,二是指定特定设备执行命令。

2万+

被折叠的 条评论
为什么被折叠?



