Reputation: 5212
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
Reputation: 45052
I had same problem with one plus one this is how I resolved it
SetUp Android Debugging
SetUp Drivers
My Computer
right click propertiesDevice Manager
from left menu,Browse my computer
for driver software instead of Online search.let me pick from a list of device drivers
on my computerAndroid driver
from list of drivers If you get a warning, select Yes to continue.Upvotes: 0
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
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
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
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