我有Archos 80 Xenon平板电脑,由于某种原因,我无法在日食中的设备选择器中找到它。
我从archos网站下载了adb,并更新了我的usb驱动程序。
仍然没有出现,我真的需要帮助。
答案 0 :(得分:12)
如果您的设备无法通过adb识别,则可以使用制造商adb驱动程序来解决问题或手动添加设备。请记住,有助于将设备识别到Windows并帮助您传输数据的设备软件不是adb驱动程序。
如何手动安装设备?
第1步[获取Google USB驱动程序]
来自Android SDK管理器安装,来自extras部分的Google USB驱动程序。
第2步[查找设备硬件ID]
你会看到类似贝娄的东西。
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步[安装]
显示新修改的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 :)