Mj1992
Mj1992

Reputation: 3504

Eclipse/Android Studio Device not showing up in Chooser Dialog

I am trying to debug my android application on a device but it is not showing me any device connected in the chooser dialog. What could be the problem ?

I've tried to change connect and disconnect the device again. I restarted the eclipse I checked Window->Preferences->Android it shows me the SDK Targets.

What else can I do. My Computer recognizes the device but the eclipse chooser dialog doesn't show any device connected.

Please help...

Upvotes: 0

Views: 6314

Answers (5)

UjjawalKr
UjjawalKr

Reputation: 241

There is a third party software named "moborobo" : http://www.moborobo.com/

You can install this there after you didn't need any driver for any perticular mobile device...it will automatically gets detected and you can choose it from the dialogue box. Hope this will help.

Upvotes: 2

Prostokvashkin
Prostokvashkin

Reputation: 71

Check that your device connected as PTP device(Camera). Notification Bar -> USB Connection. If your device connected as MTP(as common data storage) then AndroidStudio don't recognize it as debuggable device. At least that works for me and my Nexus.

Upvotes: 1

IanB
IanB

Reputation: 3489

I often encounter this problem, particularly when starting a particular emulator device for the first time that day. i.e. I launch my app, choose the device, the device starts up - but not before the launch of my app has timed out. I find that although the emulator device appears to have started properly - Eclipse does not recognise it as a "running Android device".

I simply shut down the device and repeat the process. I find that the second attempt is (almost) always successful - even if the app launch "times out", the emulator will be talking to Eclipse and I can then relaunch my app on the running emulator device.

Increasing the ADB connection timeout (defaults to 5000ms: Window...Preferences...Android...DDMS) may or may not help.

Hope this helps !

Upvotes: 0

ben75
ben75

Reputation: 28706

What you can try is: killing adb.exe (using Windows Task Manager) (your IDE will restart it when needed automatically)

If you have more than one IDE open (for instance eclipse and Android-Studio): shutdown one of them, because there may have some conflicts between them when trying to connect with ADB.

If your device was never recognized through ADB (never shows up in eclipse chooser dialog, nor in Android-Studio chooser dialog): then you can try to install the generic Android Driver provided by Google (<SDK_HOME>/extras/google/usb_driver/)

Upvotes: 0

UjjawalKr
UjjawalKr

Reputation: 241

There is another method that you can use .....when you run your project as android project, it generates an .apk file. Just move that .apk file to your device. Then on device run the application in debug mode.

Upvotes: 0

Related Questions