OPPO R2001 YOYO usb 驱动程序未找到用于从 Android Studio 调试应用程序

OPPO R2001 YOYO usb driver not found for debugging apps from Android Studio

我有一个 Android 手机 OPPO R2001 YOYO。我想从 Android Studio 调试此设备上的应用程序。我正在使用 Windows 8.1,但找不到该设备的 USB 驱动程序。我尝试了这个 link 推荐的 OPPO ADB 驱动程序,但它不起作用:

http://developer.android.com/tools/extras/oem-usb.html#Drivers.

我从不同的网站搜索了此设备的驱动程序,但它仍然无法正常工作,当我从设备管理器更新驱动程序软件时,它显示以下消息:

Windows was unable to install your R2001 Android Phone

谁能帮我解决这个问题?

  1. 下载 Google USB 驱动程序
  2. 解压包
  3. 打开文件android_winusb.inf,它位于那个包
  4. 查找您设备的硬件 ID:

    4.1。转到设备管理器

    4.2。右键单击您的设备

    4.3 Select 属性

    4.4 进入详情

    4.5 Select 硬件 ID

  5. 在您的 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_01USB\VID_1F3A&PID_1009&REV_0233&MI_01 替换为您的硬件设备 ID 并保存即可。

  6. 然后在安装驱动程序时选择 windows 应该在解压缩的文件夹中搜索驱动程序。

  7. 正如我在 Windows 8.1 上听到的那样,您必须在安装驱动程序之前在设备管理器中选择“禁用驱动程序签名强制”。但我无法对此进行测试,因为我在 Windows 7

  8. 上 运行