Reputation: 2720
I have two Android devices connected to my computer by USB cable. In both devices I have enabled the USB debugging option. I also have the Google ADT plug-in installed.
However, in Eclipse's Devices view I do not see the devices listed.
My devices:
Upvotes: 1
Views: 448
Reputation: 968
You need appropriate drivers for each of your android devices, the usual Windows' drivers aren't enough for debugging.
If you are using Nexus devices follow these steps. (Presuming you have a Nexus tablet)
For a full list of OEM drivers which are required to perform adb debugging check the official android developer site. (For your LG device)
Upvotes: 0
Reputation: 44516
See this question about Nexus 7 devices not being recognized by Eclipse: Not seeing Nexus7 in Eclipse's Android Devices
From the accepted answer:
Heres what I did to get it working:
I happened to already have ADB drivers for the Samsung Galaxy Nexus installed, if you don't, you need to download those.
Plug in the Nexus 7 and windows will find 2 drivers automatically, but won't find any for "Nexus"
Go to Device Manager, under "Other Devices" you'll see "Nexus" with the yellow exclamation mark, Right Click>Upate Drivers>Let me choose>Let me pick form device drivers on my computer.
Scroll down to "SAMSUNG Android Phone" (Again, the Galaxy Nexus drivers should be installed already, if not, find them), and choose the driver for "Android ADB Interface"
Click "Next", and the device should pop up in Eclipse.
It worked for me, at least.
Upvotes: 1