Android – My device is not showing up in “Android Device Chooser” suddenly

androidandroid-emulator

i am using my samsung galaxy3 device for testing my apps from last two months. It is working fine.
But suddenly from this morning when i connected my device to my system it is not showing up in the "Android Device chooser" window.
I have checked, USB debug mode is in checked state only in my device.

Can anybody guess the problem. It is little urgent.

Thanks,
Nehatha

Best Answer

Use a shell of some sort (Run -> cmd) and browse to the /platform-tools/ directory inside the place you installed the Android SDK Tools.

Shut down Eclipse, unplug your device and try running:

adb kill-server
adb start-server

Plug it back in and run

adb devices

If you can see it, good. Now run:

adb logcat -c
adb logcat

This will flush the current logcat output and then show the logcat output in the shell as it updates (do something on the device and the log will update). Stop it with Ctrl-C and restart Eclipse.

This has helped for me sometimes.

Also, rebooting helps.

I have another similar issue over here which I haven't found an answer to yet: Device going offline randomly (and appearing multiple times as offline) in Eclipse - fixes?

Hope some of it helps.