Android adb 无法识别 samsung gear live 或 lg g watch

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/24583354/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 08:26:40  来源:igfitidea点击:

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

androidadbwear-os

提问by Parva Thakkar

I am trying to execute adbon samsung gear live watch on windows 7. I don't seem to find device drivers to get it recognized by adb. This is what I already have -

我正在尝试adb在 Windows 7 上的 samsung gear live watch 上执行。我似乎没有找到设备驱动程序来让它被 adb 识别。这是我已经拥有的 -

  1. I have enabled adb debugging in gear live already
  2. I went to device manager and pointed device driver location for gear live to sdk\extras\google\usb_driver
  3. No luck. adb devicesyields no results.
  4. I don't seem to find device driver elsewhere for windows 7.
  1. 我已经在 gear live 中启用了 adb 调试
  2. 我去了设备管理器并将设备驱动程序位置指向 sdk\extras\google\usb_driver
  3. 没运气。adb devices没有结果。
  4. 我似乎没有在其他地方找到适用于 Windows 7 的设备驱动程序。

回答by ph0b

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

我正在运行 Windows 8.1,这种方法运行良好:

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

打开您的设备管理器并在您的 Gear Live 上选择“更新驱动程序软件...”: 装置经理

Select "Browse My Computer for driver software": browse

选择“浏览我的电脑以查找驱动程序软件”: 浏览

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

选择“让我从计算机上的驱动程序列表中选择”: 手动挑选

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

选择“安卓设备”。如果不可用,它可能已重命名为“Samsung Android Device”、“Asus Android Device”等。 选择安卓设备

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

然后,选择来自 Google、Samsung 或几乎所有其他 Android 设备供应商的“Android Composite ADB 接口”: 选择复合 ADB 接口

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

这是有效的,因为通常,所有这些复合 ADB Windows 驱动程序之间的唯一区别是 usb_id 和签名。

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

现在 adb devices 应该返回您的设备,并且您的Android 设备上会出现一个弹出窗口,以授权您的计算机。

回答by 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 :

在 Win 7 上,我发现的方法是在桌面或其他地方复制“...\sdk\extras\google\usb_driver”,然后编辑文件“android_winusb.inf”以添加 Gear Live 描述:

  • 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

  • 首先打开设备管理器,在“其他设备”中右击“Gear Live”,选择属性。在“详细信息”文件夹中,选择“材料标识号”并复制第二个(我的操作系统是法语,所以我尝试正确翻译名称......)。要复制的数字必须类似于(或为):“USB\VID_18D1&PID_D002”

  • 然后编辑“android_winusb.inf”(之前复制的文件夹中的那个,以防...)并在“[Google.NTx86]”下添加,最后,这些行:

    ;齿轮直播

    %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.

如果需要,请小心将“USB\VID_18D1&PID_D002”更改为您的材料编号(但让“&MI_01”在第二行。

  • 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".

  • 在 [Google.NTamd64] 下做同样的事情。

  • 现在您可以返回“设备管理器”,右键单击“Gear Live”,选择“更新驱动程序软件”,然后选择“浏览我的电脑...”并选择您刚刚编辑“android_winusb.inf”的文件夹。

回答by Nathan Schwermann

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.

您需要与手机配对,它会弹出一条消息,允许您的计算机连接到 adb,就像定期连接手机一样。