I\'ve tried to change the build of an application, and now eclipse doesn\'t work.
There is nothing in the console, and when I launch the debug, there is nothing on t
If you are using the Emulator and restarting adb doesn't solve the problem then close the current running Android virtual device and Launch it again.
on-off your USB debugging on mobile phone or your AVD maybe help you solve this problem. This method is work for me :)
I encountered a similar issue on Linux. It turned out that my adb server was running under my user account, so running the following fixed the issue:
sudo adb kill-server
sudo adb start-server
Restart the eclipse once...and try again
...
I also faced same problem. Go to developers Option and then Revoke USB debugging authorization.
Try adb kill-server
and adb start-server
to restart the adb. It can be found in your android sdk directory, subfolder plattform-tools
.