Skip to content Skip to sidebar Skip to footer

Phone Doesnt Show Up In Eclipse Eventhough Adb Is Working

ive got a slight problem with Eclipse. For some reason i cant find my device in the run configurations. USB Debugging is enabled on the phone and even the logcat output when the ph

Solution 1:

That window allows you to choose your preferred Android Virtual Device.

If you chose "Manual", when launching the application from Eclipse, Eclipse should display a dialog, asking you on which device the application should run -- your real phone should be present, in that dialog.

As an example, here's how this dialog looks like for me, after I've choosen Manual in the one your posted :

Android device chooser(source: pascal-martin.fr)

The 192.168.0.10:5555 phone is my HTC Desire, connected over wifi (I would get the same result with USB -- except I would have the model's name of my phone, and not it's IP address)

Solution 2:

Maybe your platform target is sdk version 10. Your Desire only has 8. Does your manifest maybe include the line:

<uses-sdkandroid:minSdkVersion="10" />

Post a Comment for "Phone Doesnt Show Up In Eclipse Eventhough Adb Is Working"