"The connection to adb is down, and a severe error has occured"
When trying to debug your application in your device, that means the adb server was not initialized right, to solve this problem, do the next steps:- Be sure Eclipse is not running
- Open the command prompt in the Android SDK platform-tools directory
- Type the command: adb kill-server, to stop the server
- Restart the server with the command: adb start-server
- Start Eclipse
Now you should be able to test you app in your device
No comments:
Post a Comment