No device list in Android DDMS

I have the latest eclipse and Android SDK - 11 released in Windows Vista are released. I updated the SDK and selected Android 3.0.1. I connected Android 3.01 Acer Iconia Tab A500. The original Acer USB driver is installed. Iconia appears on Windows and I can connect to the Iconia file system. In Eclipse / DDMS, no devices are listed. Regards, Tony Thiyes

+8
android eclipse sdk ddms
source share
4 answers

If you are using Ubuntu ,

First, add the USB provider ID to the 51-android.rules file. See here for more details.

Further

 sudo ./adb kill-server sudo ./adb start-server 

Also make sure your USB debugging is enabled on the device.

+10
source share

Are you sure that USB debugging is enabled on your device?

Settings → Applications → Development → USB Debugging

+5
source share

If you use Windows manually, terminate the adb.exe process. Pres Ctrl + alt + Del find adb.exe and click "end process". After that, run adb start-server on your promt command.

I did this and he solved the problem. Hope it can also solve your problem.

+5
source share

I am using ubuntu 10.10 next to a500. The instructions from the links and sudo commands helped. I also tried without sudo, and it did not work (it worked on adb devices). Please note that for my dev I use eclipse working under a regular account. Below is my conclusion from "adb devices"

android-sdk-linux_x86 / platform-tools $. / adb devices List of connected devices 288504640800597 device

0
source share

All Articles