3

我对 android sdk 和我的平板电脑有一些奇怪的行为。我正在尝试通过以下方式识别我的平板电脑:

adb devices -l

命令。

每次我插入平板电脑时,电脑上都会弹出一个窗口片刻,询问我将平板电脑识别为相机并询问我想用什么应用程序打开它。然后在我点击任何东西之前它就消失了。在平板电脑上,它会说“允许从某台计算机进行usb调试?”。有时在我点击它之前它会消失。其他时候我点击它,但 adb devices -l 仍然无法识别它。然后我检查 dmesg:

[ 3398.180553] usb 1-1: new high-speed USB device number 45 using ehci_hcd
[ 3398.321392] usb 1-1: New USB device found, idVendor=18d1, idProduct=4e44
[ 3398.321404] usb 1-1: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 3398.321411] usb 1-1: Product: Nexus 7
[ 3398.321416] usb 1-1: Manufacturer: asus
[ 3404.230444] usb 1-1: USB disconnect, device number 45

我正在使用 Linux Mint 14。直到最近我才遇到问题。

以下是我为解决问题所采取的步骤列表:

  1. 重新启动我的计算机,选择不同的内核版本
  2. 使用 adb kill-server 和 adb start-server 重新启动 adb
  3. 将平板电脑电缆插入其他 4 个 USB 端口
  4. 重新启动平板电脑
  5. 仔细检查是否仍然启用了 USB 调试(是的,它是)
  6. lsusb(应该显示 Google Inc.,但不是)
  7. 我有最新的 sdk,一切都是最新的
  8. 谷歌搜索,但我只找到了我已经采取的基本故障排除步骤
  9. 更多步骤

我不确定还能做什么。但是,这种生产力时间上的损失让我付出了代价。我几乎完成了我的第一个公司应用程序,需要完成它,以便我可以向他们出售产品。

4

4 回答 4

5

You can try with these steps:

  1. stop the server with: adb kill-server.
  2. Go to ~/.android/ and if doesn't exist create the file: adb_usb.ini
  3. Add a line with the value: 0x18d1 (the vendorId of your device).
  4. Save and close the file.

Try again. For me it worked (i'm using a 100 euros tablet...) Finally if you still have problems you can create an udev rule in /etc/udev/rules.d/51-android.rules, like the following:

SUBSYSTEM =="usb", ATTR{idVendor}=="18d1", MODE ="0666", GROUP ="plugdev"

And make sure that your user is in plugdev group. Hope this help.

于 2013-04-05T22:29:39.057 回答
1

一个朋友给了我一根新电缆。现在我的平板电脑显示adb devices -l, lsusb,dmesg没有错误,并且可以在 Eclipse Android SDK Bundle 中运行。

于 2013-04-06T08:22:03.217 回答
-1

你检查过块设备的权限吗?尝试以 root 身份启动 adb 服务器。

于 2013-04-05T22:00:06.203 回答
-2

您的计算机上安装了正确的驱动程序吗?

即使平板电脑被识别,这并不一定意味着驱动程序已安装。

您可以在此处找到 Nexus 7 的驱动程序:http ://www.asus.com/Tablets_Mobile/Nexus_7/#support_Download_32

于 2013-04-05T21:55:58.147 回答