我刚买了三星 Galaxy S3,安装了 Kies 软件。当我尝试将我的一个应用程序从 eclipse 安装到我的手机时,我发现我的设备“Samsung Galaxy S3”未列出,只有虚拟设备“模拟器已列出”
如何列出我的真实设备以在其中安装我的应用程序。
首先打开“开发者选项”然后启用“USB调试”,或者你可以使用adb工具检查你的设备是否已经连接。希望它可以帮助你。
您是否启用了 USB 调试?
Enable USB debugging on your device.
-- On most devices running Android 3.2 or older, you can find the option under
Settings > Applications > Development.
On Android 4.0 and newer, it's in Settings > Developer options.
-- Note: On Android 4.2 and newer, Developer options is hidden by default.
To make it available, go to Settings > About phone and tap Build number seven times.
Return to the previous screen to find Developer options.
有关更多信息,请访问此开发者的网站。
如果你在linux上,那么
非常清楚地回答对于 Linux,您需要设置 UDEV 以支持制造商的身份,或者您需要使用 sudo 重新启动 adb。
要正确执行此操作,请执行以下操作:
lsusb
并寻找您的平板电脑:
Bus 002 Device 008: ID 04e8:6860 Samsung Electronics Co., Ltd Note the ID.
然后去
/etc/udev/rules.d
并在该文件中创建一个名为 androiddevelopment.rules 的新文件:
SUBSYSTEM=="usb", ATTRS{idVendor}=="xxxx", OWNER="yyyy", GROUP="zzzz"
其中 xxxx 是 ID 的第一部分(在我的示例中为 04e8),yyyy owner 是您的用户名,zzzz 是您的组。
然后重启udev:
sudo service udev restart
这应该允许 Linux 自动允许您的用户连接到该设备。
从Reference得到这个答案。