Reputation: 505
I find that after running or debugging my application a few times using eclipse, that I get the above output in my console (in red) and I get no feedback from Dalvik as to the connection status to my phone is going. My application will still debug etc. I just get nothing useful in my Console.
Any ideas how to fix this? It appears intermittent. It starts doing it after a few minutes, continues to do it for quite a while and occasionally goes away again. This has happened on my last laptop and now on my new laptop with a completely fresh install etc.
Upvotes: 24
Views: 30939
Reputation: 55
The problem caused by an USB bug
1- Save your work 2- Close Eclipse 3- Restart your computer 4- Open Eclipse and enjoy ^^
it works for me
Good luck
Upvotes: 0
Reputation: 749
I'm on Windows 7 64 bit; but maybe 2 or 3 times during the day I get this same error. I tried the reboot thing, which sometimes worked, sometimes didn't.
I have found the fix to be:
Always works for me. If anyone knows of an update to something I can download to avoid doing this all the time, I'd love to know!
Upvotes: 37
Reputation: 41
Year almost 2018 I just had same problem which doubled my gray hairs. It turned out my test phone Samsung Galaxy S6 does not like the USB ports on my Apple Thunderbolt Display. I just plugged the USB cable directly to my Mac Pro and it worked right away. Funny thing is my Google Pixel Phone never complains about the USB port on Thunderbolt.
Upvotes: 2
Reputation: 379
You may have to kill the deamon and restart it. Following are the steps;
open a command prompt and locate the SDK's platform tools folder. E.g.:- cd c:\android-sdk-windows\platform-tools
then execute "adb kill-server" command. You will see the disconnected icon in run configuration panel is now cleared.
then again execute "adb start-server" command.
Then try running the device, if it doesn't work try restarting the eclipse.
Upvotes: 1
Reputation: 764
I was using a USB 3.0 port too and a device Xoom with ics 4.0. To solve my problem, I needed to restart my Windows, because in the DDMS my device was showed twice. After the restart, I needed to change the USB port to a 2.0 USB port and it work for me.
Upvotes: 0
Reputation: 15573
I had the same problem - Try to use a different USB port. From my experience, the USB connections on the PC front are not recommended.
Upvotes: 17
Reputation: 942
To keep the error message from showing up I did the following on Eclipse 3.7:
Upvotes: 1