Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No device list in Android DDMS

I have the newest eclipse & Android SDK -release 11- installed on Windows Vista. I updated the SDK and chose Android 3.0.1. I connected an Android 3.01 Acer Iconia Tab A500. Installed the original Acer USB driver. The Iconia shows up in Windows and I can connect to the Iconia's file system. In Eclipse / DDMS no devices are shown in the list. Kind regards, Tony Thijs

like image 562
Tony Thijs Avatar asked Jun 11 '11 21:06

Tony Thijs


3 Answers

If You are using windows manually end process of adb.exe. Pres Ctrl+alt+Del find adb.exe and press "end process". After that execute adb start-server on your command promt.

I did those things and it solved the problem. Hopefully it can also solve your problem.

like image 34
indah Avatar answered Oct 31 '22 04:10

indah


If you are using Ubuntu,

Firstly, add your USB vendor ID to the file 51-android.rules. See here for more details.

Next,

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

Also make sure that your USB Debugging is enabled in the device.

like image 172
Shumon Saha Avatar answered Oct 31 '22 06:10

Shumon Saha


Have you made sure "USB debugging" is enabled on the device?

Settings >> Applications >> Development >> USB debugging

like image 44
Justin Avatar answered Oct 31 '22 05:10

Justin