0

I am trying to rum a simple hello word program.But the emulator is not getting loaded it shows an error in the logcat

[2014-03-26 09:48:55 - HelloWorld] Android Launch!
[2014-03-26 09:48:55 - HelloWorld] The connection to adb is down, and a severe error has occured.
[2014-03-26 09:48:55 - HelloWorld] You must restart adb and Eclipse.
[2014-03-26 09:48:55 - HelloWorld] Please ensure that adb is correctly located at 'D:\adt-bundle-windows-x86-20131030\sdk\platform-tools\adb.exe' and can be executed.
Kanwaljit Singh
  • 4,339
  • 2
  • 18
  • 21
user3041524
  • 125
  • 1
  • 1
  • 5
  • kill server and restart eclipse... follow this steps..http://stackoverflow.com/questions/4072706/the-connection-to-adb-is-down-and-a-severe-error-has-occured – Giridharan Mar 26 '14 at 04:37

1 Answers1

0

Try these steps:

  1. Close the Eclipse if running
  2. Go to the Android SDK platform-tools directory in Command Prompt
  3. Type adb kill-server
  4. Then type adb start-server
  5. No error message is thrown while starting ADB server, then adb is started successfully.
  6. Now you can start Eclipse again.
Sujith Thankachan
  • 3,508
  • 2
  • 20
  • 25