亚行没有找到我的Archos设备

时间:2013-10-03 17:43:43

标签: android debugging adb tablet archos

我有Archos 80 Xenon平板电脑,由于某种原因,我无法在日食中的设备选择器中找到它。

我从archos网站下载了adb,并更新了我的usb驱动程序。

仍然没有出现,我真的需要帮助。

2 个答案:

答案 0 :(得分:12)

如果您的设备无法通过adb识别,则可以使用制造商adb驱动程序来解决问题或手动添加设备。请记住,有助于将设备识别到Windows并帮助您传输数据的设备软件不是adb驱动程序。

如何手动安装设备?

第1步[获取Google USB驱动程序]

来自Android SDK管理器安装,来自extras部分的Google USB驱动程序。

第2步[查找设备硬件ID]

  1. 转到Windows设备管理器
  2. 从列表中找到您的设备
  3. 然后转到它的属性。
  4. 选择详情标签。
  5. 从下拉列表中选择硬件ID。
  6. 你会看到类似贝娄的东西。

    USB\VID_18D1&PID_4EE2&REV_0228&MI_00
    USB\VID_18D1&PID_4EE2&MI_00
    

    复制这两行。

    第3步[更新USB驱动程序]

    转到设备安装文件夹 在sdk \ extras \ google \ usb_driver下,您会看到一个文件android_winsub.inf 打开文件

    转到第[Google.NTx86]部分 你会看到类似bellow的东西(不要担心设备名称的完全匹配。)。

    ;Google Nexus Q
    %SingleBootLoaderInterface% = USB_Install, USB\VID_18D1&PID_2C10
    %SingleAdbInterface%        = USB_Install, USB\VID_18D1&PID_2C11
    

    复制此内容并创建一个与您的设备名称相对应的新条目。所以新条目看起来像这样,

    ;My Nexus Q
        %SingleBootLoaderInterface% = USB_Install, [Things you just copied on step 2]
        %SingleAdbInterface%        = USB_Install, [Things you just copied on step 2] 
    

    [Google.NTamd64]

    部分执行相同操作

    第4步[安装]

    1. 转到Windows设备管理器
    2. 您的设备属性
    3. 驱动程序 - >更新驱动程序
    4. 显示新修改的android_winsub.inf并安装。

      最后一步 重启你adb。

      adb kill-server
      adb start-server
      

答案 1 :(得分:0)

This may cause by a plenty of reasons.
You might need to check the device support in Archos website. I've found the link(http://www.archos.com/support/support_tech/updates_adb.html?lang=en) for you. 

As far as I know, not every Android devices is ready for development out-of-box.
But the solutions are quite similar:
 1. Download the driver of your device and install it.
 2. Edit "%USERPROFILE%\.android\adb_usb.ini" file and wirte "0x0e79" to specify your device vendor ID
 3. After above, restart your adb server:
    cd "location of your platform-tools dir"
    adb kill-server
    adb start-server

Above is from my personal experience, please feel free to correct me if I'm wrong :)