如何让 x10 mini 显示在 osx 上的 adb 设备中?

发布于 2024-09-29 22:33:53 字数 648 浏览 4 评论 0原文

我无法让 x10 mini 显示在“adb devices”中(仅显示模拟器)。手机处于 USB 调试模式,其他应用程序被禁用,并且在 OSX 上我不需要为手机下载任何 USB 驱动程序,那么这里出了什么问题呢?

/Developer/Utilities/usb 探针将电话报告为:

    Descriptor Version Number:   0x0200
    Device Class:   0   (Composite)
    Device Subclass:   0
    Device Protocol:   0
    Device MaxPacketSize:   64
    Device VendorID/ProductID:   0x0FCE/0x2138   (Sony Ericsson Mobile Communications AB)
    Device Version Number:   0x0224
    Number of Configurations:   1
    Manufacturer String:   1 "SEMC"
    Product String:   2 "SEMC HSUSB Device"
    Serial Number String:   3 "4342xxxx314A5151xxxx"

感谢您的帮助

I cant get x10 mini to show up in "adb devices", (only emulators show up). Phone is in usb-debugging-mode, thethering-applications are disabled and on OSX I shouldn't need to download any USB drivers for the phone, so whats wrong here?

/Developer/Utilities/usb probe reports phone as:

    Descriptor Version Number:   0x0200
    Device Class:   0   (Composite)
    Device Subclass:   0
    Device Protocol:   0
    Device MaxPacketSize:   64
    Device VendorID/ProductID:   0x0FCE/0x2138   (Sony Ericsson Mobile Communications AB)
    Device Version Number:   0x0224
    Number of Configurations:   1
    Manufacturer String:   1 "SEMC"
    Product String:   2 "SEMC HSUSB Device"
    Serial Number String:   3 "4342xxxx314A5151xxxx"

Thankful for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉世弥音 2024-10-06 22:33:53

运行命令

android update adb

这将在您的 $HOME/.android 目录中创建一个 adb_usb.ini 文件。打开此文件后,您将看到:

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.

只需向文件添加一个新行并写入 0x0FCE 保存该文件并退出。现在重新启动 adb 服务器:

adb kill-server
adb start-server

adb devices 现在应该列出您的设备。

Run the command

android update adb

This will create a adb_usb.ini file in your $HOME/.android directory. After you open this file you will see:

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.

Just add a new line to file and write 0x0FCE save that file and exit. Now restart adb server with:

adb kill-server
adb start-server

adb devices now should list your device.

拥抱影子 2024-10-06 22:33:53

您写道“网络共享应用程序已禁用。您是否在使用 EasyTether?您是否尝试过以下操作?:

Mac OS X 上的 ADB 停止识别
安装后连接的设备
EasyTether 驱动程序。使用
kextload/kextunload 从中卸载
内存 EasyTetherUSBEthernet.kext
手动扩展内核。它是在
/系统/库/扩展/

You write "tethering-applications are disabled. Are you using EasyTether and did you try the following?:

ADB on Mac OS X stops recognizing the
attached device after installing
EasyTether driver. Use
kextload/kextunload to unload from
memory the EasyTetherUSBEthernet.kext
kernel extension manually. It is in
/System/Library/Extensions/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文