1

I am using Eclipse ADT and it was working fine for me for last 1 year, but suddenly I faced this issue, may I know How can I resolve this ?

The connection to adb is down, and a severe error has occured.
[2015-12-12 09:57:13 - MyPlace] You must restart adb and Eclipse.
[2015-12-12 09:57:13 - MyPlace] Please ensure that adb is correctly located at '/home/system/adt-bundle-linux-x86-20140702/sdk/platform-tools/adb' and can be executed.
Sophie
  • 2,594
  • 10
  • 41
  • 75
  • Make sure adb exist at that path. Also Eclipse isn't supported anymore. Start using Android Studio. – Sharjeel Dec 12 '15 at 04:57

1 Answers1

1

Try below steps....

  1. Close the Eclipse if running
  2. Navigate terminal to Android SDK platform-tools directory
  3. Type adb kill-server (Eclipse should be closed before issuing these commands)
  4. Then type adb start-server
  5. No error message is thrown while starting ADB server, then adb is started successfully.

Now you can start Eclipse again.

Otherwise you can stop adb service from System Monitor, and restart eclispe.

For more details, click here...

Community
  • 1
  • 1
User
  • 4,023
  • 4
  • 37
  • 63
  • can you brief this: Go to the Android SDK platform-tools directory in Command Prompt, like : Steps (I am using Ubuntu) – Sophie Dec 12 '15 at 05:16
  • Oops sorry! You can navigate terminal to android SDK directory. Tell me where you keep your android sdk directory, I will write the command – User Dec 12 '15 at 05:42