Alex K
Alex K

Reputation: 5212

Why Can't I see my android device in DDMS Perspective Mode in Eclipse?

I turned on the usb-debugging mode and installed kies (drivers). What else should I do?

I use MIUI.US Rom

Edit:

My device is Galaxy S I9000. I try to debug a program that I wrote through the device, but I can't see the device in eclipse. I tried:

adb kill-server
adb start-server

but it didn't help.

Upvotes: 2

Views: 11475

Answers (5)

Hitesh Sahu
Hitesh Sahu

Reputation: 45052

I had same problem with one plus one this is how I resolved it

SetUp Android Debugging

  • Go to settings -> About Device and tap on Build number for 7 times it will unlock Developers Option feature in settings.
  • In Developers option check Usb debugging

SetUp Drivers

  • Go to My Computer right click properties
  • Select Device Manager from left menu,
  • In Device manager find the Android device, and select Update Driver Software.
  • Select Browse my computer for driver software instead of Online search.
  • Next select let me pick from a list of device drivers on my computer
  • Select Android driver from list of drivers If you get a warning, select Yes to continue.

Upvotes: 0

Azmo
Azmo

Reputation: 144

I know this is a very old question but I just encountered the same thing and solved it by simply REBOOTING the android device. Who would've thought huh?

Anyway, I am using android studio in stead of eclipse and a one-plus one device running Cyanogenmod 12.0, it wouldn't show up in the Android Device Monitor even though the drivers were installed, usb debugging was turned on and after revoking USB debugging authorisations multiple times and plugging it in and out of different USB ports, rebooting finally solved my issue.

Upvotes: 0

Moog
Moog

Reputation: 10193

I failed to get the Google drivers to work with Samsung devices over ADB.

Install Samsung Kies and it will assist in installing the required OEM drivers for you.

Upvotes: 2

John Fourth
John Fourth

Reputation: 56

This happened to me twice. Two different issues. The first was a bad USB cable. It would mount but not debug. The second was that I had to reinstall the Google USB drivers for the phone debugging. They are in your SDK install location under extras/google/usb_driver. You should see a device with an exclamation mark in device manager. Just update that driver with the one listed above.

Upvotes: 4

Anuj Tenani
Anuj Tenani

Reputation: 2094

Try the following, in your command prompt

adb devices

see if it shows the list of devices attached

if not , then make sure you have debugging enabled on your test device To enable debugging go to

Phone Settings --> Applications --> Development --> Enable USB Debugging

Check mark it , the try adb devices

Upvotes: 1

Related Questions