Eclipse: Android Device Chooser - Unknown Android 2.3.4 Device

前端 未结 8 1866
栀梦
栀梦 2020-12-15 04:38

I have a Nexus One phone running Android 2.3.4. I am trying to build an application using the USB open accessory library. To do this I have selected Google APIs 10 as the Bu

8条回答
  •  醉梦人生
    2020-12-15 05:24

    Supposing you are on Linux: Your device-node-permissions are very likely wrong. Check if this is true by issuing a:

    adb kill-server
    sudo adb start-server
    adb devices 
    

    on your computer. This launches the adb-server as root. If this work, and it doesn't work if you leave out the sudo, you have a permission-problem.

    The solution depends uppon your distribution and your installed versions check this blog entry which explains how to generate a udev file for Ubuntu.

提交回复
热议问题