adb doesn't recognize samsung gear live or lg g watch

断了今生、忘了曾经 提交于 2019-11-30 04:09:53

I'm running Windows 8.1 and this method worked perfectly fine:

Open your device manager and select "Update Driver Software..." on your Gear Live:

Select "Browse My Computer for driver software":

Select "Let me pick from a list of drivers on my computer":

Select "Android Device". If not available, it may have been renamed to "Samsung Android Device", "Asus Android Device", and so on.

Then, choose the "Android Composite ADB interface" from Google, Samsung or in fact almost any other Android devices vendor:

This works because usually, the only differences between all these composite ADB Windows drivers are the usb_id and the signature.

Now adb devices should return your device and a popup will appear on your Android device, to authorize your computer.

Nico

On Win 7, the way I found is to make a copy of "...\sdk\extras\google\usb_driver" on desktop or elsewhere, then edit file "android_winusb.inf" to add Gear Live description :

  • First open Device Manager and right click "Gear Live" in "Other devices" and choose Properties. In "Details" folder, choose "material identification numbers" and copy the second one (My os is in french, so i try to translate names correctly...). The number to copy must look like (or be): "USB\VID_18D1&PID_D002"

  • Then edit "android_winusb.inf" (the one in the folder previously copied, in case of...) and add under "[Google.NTx86]", at the end, these lines :

    ;Gear Live

    %SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_D002

    %CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_D002&MI_01

Be careful to change "USB\VID_18D1&PID_D002" with your material number if needed (but let "&MI_01" on second line.

  • Make the same under [Google.NTamd64].

  • Now you can go back to "device manager", right click on "Gear Live", choose "Update driver software" then "Browse my computer..." and choose the folder where you just edit "android_winusb.inf".

You need to be paired to a phone and it will pop up a messaged to approve your computer to connect to adb just like connecting a phone regularly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!