Eclipse 具有同一 Android 设备的多个副本
我为 Android 设备编程已经有一段时间了,最近才遇到这个:
在线列表中只有一个,但我无法运行/调试我的程序,因为它报告“ADB 拒绝安装命令:设备离线”,因为每个其他设备都具有相同的 ID。
重置可以解决这个问题,但是还有其他选择吗?为什么会发生这种情况?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
退出eclipse,杀死adb并重新启动eclipse
Exit eclipse, kill adb and restart eclipse
我发现问题通常是由于电缆或连接不良造成的。尝试将其插入另一个 USB 插槽或尝试使用不同的电缆,这对我有用。
I find that the issue is often with a bad cable or connection. Try and insert it into another USB slot or try with a different cable, worked for me.
我必须提醒自己如何调用命令,所以我想我应该为其他不记得如何调用命令的人写一个答案。
adb.exe
的位置。cd C:\ADT\sdk\platform-tools
adb Kill-server
adb start-server
归功于 Squeazer 的命令。
I had to remind myself how to call the commands, so I thought I'd write an answer for other people that don't remember how.
adb.exe
.cd C:\ADT\sdk\platform-tools
adb kill-server
from the command promptadb start-server
from the command promptCredits to Squeazer for the commands.