What USB driver should we use for the Nexus 5?

前端 未结 18 1060
执念已碎
执念已碎 2020-12-02 08:50

As of the time of this writing, Google does not provide a USB driver (for Windows) for the Nexus 5. The usual link (http://developer.android.com/sdk/win-usb.html) shows Wind

18条回答
  •  一整个雨季
    2020-12-02 09:52

    My Nexus 5 is identyfied by the id = USB\VID_18D1&PID_D001.

    Use the Google USB drivers, and modify file android_winusb.inf. Find the lines:

    ;Google Nexus (generic)
    %SingleBootLoaderInterface% = USB_Install, USB\VID_18D1&PID_4EE0
    

    And add below:

    %CompositeAdbInterface%     = USB_Install, USB\VID_18D1&PID_D001
    

    Repeat it, because there are two sections to modify, [Google.NTx86] and [Google.NTamd64].

    If you continue with problems, try this:

    Connect your Nexus 5, go to Device Manager, find the Nexus 5 on "other" and right click. Select properties, details, and in selection list, and select hardware id. Write down the short ID, and modify the line with:

    %CompositeAdbInterface% = USB_Install, YOUR_SHORT_ID
    

提交回复
热议问题