Time for action – configuring the USB driver on Windows
The file we need to edit on Windows operating systems is found at C:\Development\adt-bundle-windows-x86_64\sdk\extras\google\usb_driver\android_winusb.inf
. Perform the following steps to edit the driver file:
Double-click on the file to open it in Notepad and find the section that begins with
[Google.NTx86]
. You'll see a list of devices already below this header; after the last device, add the highlighted text shown in the following screenshot:Add the same block of text in the same place under the similar section
[Google.NTamd64]
, then save the document, and close Notepad.Tip
The values that you entered shouldn't have a blank space after them, including any spaces or returns. Make sure that each line ends with the final character to avoid errors.
Next, open the Windows Command Prompt and run the following commands:
adb kill-server echo 0x2836 >> "%USERPROFILE%\.android\adb_usb.ini" adb start-server
Close the command prompt and right...