Eclipse 具有同一 Android 设备的多个副本

发布于 2024-11-28 07:53:27 字数 251 浏览 0 评论 0 原文

我为 Android 设备编程已经有一段时间了,最​​近才遇到这个:Multiple devices with same name in Eclipse..

在线列表中只有一个,但我无法运行/调试我的程序,因为它报告“ADB 拒绝安装命令:设备离线”,因为每个其他设备都具有相同的 ID。

重置可以解决这个问题,但是还有其他选择吗?为什么会发生这种情况?

I've been programming for Android devices for some time now and just recently came across this:Multiple devices with same name in Eclipse..

There is a single one in the list online, but I can't run/debug my programs because it reports "ADB rejected install command with: device offline" since every other device has the same ID.

A reset fixes this, but is there any other options? Why is this happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

﹂绝世的画 2024-12-05 07:53:27

退出eclipse,杀死adb并重新启动eclipse

Exit eclipse, kill adb and restart eclipse

孤独陪着我 2024-12-05 07:53:27

我发现问题通常是由于电缆或连接不良造成的。尝试将其插入另一个 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.

滥情哥ㄟ 2024-12-05 07:53:27

我必须提醒自己如何调用命令,所以我想我应该为其他不记得如何调用命令的人写一个答案。

  1. 找到 adb.exe 的位置。
  2. 打开命令提示符。
  3. 在命令行中,将目录更改为步骤 1 中的目录。
    • 对我来说,命令和目录是:cd C:\ADT\sdk\platform-tools
  4. 从命令提示符运行:adb Kill-server
  5. 运行:命令提示符下的 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.

  1. Find the location of adb.exe.
  2. Open up command prompt.
  3. In command line, change the directory to the directory from step 1.
    • For me, the command and directory is: cd C:\ADT\sdk\platform-tools
  4. Run: adb kill-server from the command prompt
  5. Run: adb start-server from the command prompt

Credits to Squeazer for the commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文