问题描述
最近我买了一台新的Android平板电脑(一个没有名字的中国平板电脑),我想测试我开发上的应用程序。
Recently I bought a new android tablet (a no-name Chinese tablet), and I'd like to test an application I'm developing on it.
然而,当我试图通过Eclipse中运行它,它不会承认我的平板电脑(调试模式在平板电脑上启用)。当我有Select Device对话框我看
However, when I try to run it through Eclipse, it won't recognize my tablet (the debugging mode is enabled on the tablet). When I have the select device dialog I see
序列号:???????????
AVD名称:N / A
目标:未知
调试:
状态:??
我跑Linux Mint的。我该怎么办?
I'm running Linux Mint. What should I do?
推荐答案
在Linux上,你需要添加一个udev规则的平板电脑。例如:
On Linux, you have to add an udev rule for your tablet. For instance:
#cat /etc/udev/rules.d/51-android.rules
SUBSYSTEM=="usb", SYSFS{idVendor}=="0502", MODE="0666"
您可以为了以检索厂商ID使用的lsusb
you can use lsusb
in order to retrive the vendor id
Bus 002 Device 016: ID 0502:3325 Acer, Inc.
这篇关于日食不会承认我的Android平板电脑,当我尝试测试我的应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!