通过 USB 进行 Android 调试不适用于 WM6850 平板电脑
我正在为客户开发 Android 应用程序,但他希望运行该应用程序的平板电脑遇到了问题。长话短说,我认为我没有合适的 USB 驱动程序,也找不到任何适用的驱动程序。我尝试联系制造商但没有成功。我相信该平板电脑是运行 Android 2.2 的 WM6850 平板电脑。
我已将其切换到调试模式并按下允许外部应用程序所需的开关,但我仍然在 adb devices 下看不到它。如果我将其切换为大容量存储设备,我可以从 Windows 资源管理器中看到它。
有谁知道我在哪里可以找到该设备的 USB 驱动程序,或者我是否遗漏了一些东西来识别该设备?
感谢您的帮助,如果需要更多说明,我很乐意提供。
-伊恩
I am developing an Android Application for a client and have run into a problem with the tablet that he wants it to run on. Long story short, I don't think I have the right USB drivers and can't find any applicable ones. I have tried to contact the manufacturer but no luck. The tablet is a WM6850 tablet running Android 2.2, I believe.
I have switched it to debugging mode and hit the switches that I needed to hit to allow foreign applications but I still can't see it under adb devices. If I switch it to use as a mass storage device, I can see it from Windows Explorer.
Does anyone know where I could find USB drivers for this device OR if there is something I have missed to get this device recognized?
Thanks for your help, if there is any more clarification needed I would be happy to provide.
-Iain
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我之前遇到过一台平板电脑,它似乎只允许大容量存储,而不允许 adb 连接。检查它是否有任何 adb 或 usb 调试支持的一种方法是将其通过 sdk 通过 USB 连接到 Mac。 OSX 和 android sdk 可以很好地协同工作,无需 USB 驱动程序即可与之通信。
我知道它对您的 Windows 盒子情况没有帮助,但如果它不支持开箱即用的 adb 连接,可能会为您节省一些麻烦。
I've run into a tablet before that seems to only allow for mass storage and not adb connections. One way you can check to see if it has any adb or usb debugging support is to usb it into a mac with the sdk. OSX and the android sdk work well enough together that no usb drivers are needed to communicate with it.
I know it doesn't help with your windows box situation, but may save you some trouble if it doesn't support adb connections out of the box.
如果您使用 Linux 作为操作系统,则需要在 /etc/udev/rules.d
设备。
那么也许在 Windows 中您遇到一些 USB 访问权限问题?这就是我在 Linux 上的情况,一旦我设定了规则,那么 eclipse 和 ADT 就会很开心。
希望有帮助。
If you are using Linux as your OS you'll need to set the USB device rules in /etc/udev/rules.d
device.
So perhaps in Windows you have some USB access permissions issues? That was my case on Linux, once I set the rules, then eclipse and ADT were happy bunnies.
Hope that helps.