1

I am trying to run an app through my Galaxy S5 using android studio and this message keeps popping up. I have tried killing/restarting abd through cmd to no avail. I have restarted my computer, phone, and android studio, none of which have worked. I have looked in

C:\Program Files (x86)\Android\android-studio\sdk\platform-tools

and can't find

adb.exe

so I suspect this may be the issue but can't find a fix for it.

For clarification, I have been testing my app fine until today when this issue arose. I also just recently updated android studio to 0.8.6 which may have contributed to the issue.

Mike49
  • 473
  • 1
  • 5
  • 17

6 Answers6

1

I just re-installed Android Studio and it is working now. I have no idea where the problem came from

Mike49
  • 473
  • 1
  • 5
  • 17
0

You have to type (in a shell) "sudo apt-get install android-tools-adb"

CaGe81
  • 1
0

A Build -> Make Project solved the issue for me. My project then ran normally.

Source

anon
  • 4,163
  • 3
  • 29
  • 26
0

Try this:

"From the command prompt run the command adb kill-server. This will shutdown ADB and android studio or Eclipse if you were to use that, would show Waiting for ADB as you said.

Once ADB has shutdown down run adb start-server or run adb devices which will automatically start the adb service and show that your android emulator or development devices has successfully connected."

ADB not responding. You can wait more,or kill "adb.exe" process manually and click 'Restart'

Community
  • 1
  • 1
Cícero Moura
  • 2,027
  • 1
  • 24
  • 36
0

I Battled with this problem for a couple of days (nearly drove me nuts) and every solution I found failed to help me. Till I tried the answer by @Mike49.

(On Mac)

I uninstalled Android Studio (moved it from Applications to Trash)

Restarted my Mac

Reinstalled Android Studio (moved it back from Trash to Applications)

And everything was back to normal.

Emzor
  • 1,380
  • 17
  • 28
0

Following works for me every time: go to File->Invalidate Caches/Restart select Invalidate and Restart

And, You are good to go.

Dhawan Gupta
  • 21
  • 1
  • 1
  • 2