einUsername
einUsername

Reputation: 1619

Eclipse doesn't see my Android device

I just installed the Android SDK and Eclipse and then tried to launch an app from Eclipse on my real android tablet.

Clicking the "run-as" symbol in the toolbar shows "none applicable" so i used the context menu of the project file. Here i can choose "android Application" but in the opening window my device doesnt show up.

I enabled the developer mode and USB debugging and Windows installed some drivers automatically. I also tried installing the USB driver from Acers homepage manually. After connecting, the tablet shows the "USB debugging connected" in the pull down menu. The file system can be accessed trough windows explorer, so i build the app manually and was able to copy it through windows explorer onto the tablet and then run it through androids file manager.

What can i try to get this essential feature working? Thanks for all answers!

Upvotes: 4

Views: 5971

Answers (3)

Michael G
Michael G

Reputation: 81

I had the same problem with my LG G3 phone. I tried to re-install the driver as explained here: http://developer.android.com/tools/extras/oem-usb.html Nothing helped. Fortunately on the very same page I have found the link to LG firmware site: http://www.lg.com/us/support/software-firmware

So I did the following:

  • Connect the phone to the PC using the USB cable

  • Uninstalled the Google's USB driver (My Computer->Management->Devices->Portable Devices->MyPhone: uninstall)

  • Download driver for my LG G3 phone (LG885) from the LG site

  • Install this driver

  • Got on the phone screen request to approve the new RCA key and allow debugging.

  • Try to Run an Android project in Eclipse.

  • PROBLEM SOLVED.

Upvotes: 0

noobProgrammer
noobProgrammer

Reputation: 1451

1) Connect your phone with your computer (Easy)

2) Enable USB debugging How to do it

3) Watch this video so as to Install the correct drivers on your computer How to do it

Hope that helps!!

Upvotes: 8

JJ86
JJ86

Reputation: 5113

This is a short checklist that you need to follow:

  1. download manufacturer driver from this official link and install it;
  2. be sure that you have enabled Developer Options on your device;
  3. enable "Debug USB" on Developer Options;
  4. go to Storage, and in options menu click "USB computer connection";
  5. in USB computer connection, check "Media device (MTP);
  6. check in your system bar if you have the symbol of "Debug USB" (is a KitKat on latest version, for example);
  7. connect your device on PC.

If your device is showed on device list, but it is "unknown", than restart only your device.

Upvotes: 3

Related Questions