我有一个Android Mobile OPPO R2001 YOYO。我想从Android Studio调试此设备上的应用程序。我正在使用Windows 8.1,但我找不到此设备的USB驱动程序。我尝试了此链接推荐的OPPO ADB驱动程序,但它无法正常工作:
http://developer.android.com/tools/extras/oem-usb.html#Drivers
我从不同的网站搜索此设备的驱动程序,但它仍然无法正常工作,当我从设备管理器更新驱动程序软件时,它显示以下消息:
Windows无法安装您的R2001 Android手机
有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
android_winusb.inf
找到您设备的Hadware ID:
4.1。转到设备管理器
4.2。右键单击您的设备
4.3选择属性
4.4转到详细信息
4.5选择硬件ID
在android_winusb.inf
文件中添加新条目
这可能是这样的:
[Google.NTx86]
;GT90H //this would be your device name so sth like r2001
%SingleAdbInterface% = USB_Install, USB\VID_1F3A&PID_1009&MI_01 //this is the short one of your hardware ids
%CompositeAdbInterface% = USB_Install, USB\VID_1F3A&PID_1009&REV_0233&MI_01 //this is the long one of your hardware ids
%SingleAdbInterface% = USB_Install, USB\VID_1F3A&PID_1009&MI_01 //this is the short one of your hardware ids
%CompositeAdbInterface% = USB_Install, USB\VID_1F3A&PID_1009&REV_0233&MI_01 //this is the long one of your hardware ids
因此,您只需要为设备指定其他名称,并将USB\VID_1F3A&PID_1009&MI_01
和USB\VID_1F3A&PID_1009&REV_0233&MI_01
替换为您的硬件设备ID并保存。
然后在驱动程序安装中选择Windows应该在您的unziped文件夹中搜索驱动程序。
正如我在Windows 8.1上所听到的那样,您必须先在Device-Manager中选择“禁用驱动程序签名强制执行”,然后才能安装驱动程序。但我无法测试这个,因为我在Windows 7上运行