1

I've installed ADT bundle eclipse, and the problem is I can't run my project. It says

ADB server didn't ACK 
failed to start daemon

I've read a lot, people says type -adb kill-server and -adb start-server will helps, or go to processes tab and restart adb.exe, but the problem is, I don't know why I don't the adb.exe in my processes.

Can anyone help? Many thanks

user3774763
  • 125
  • 1
  • 1
  • 8

1 Answers1

0

For Windows in cmd:

adb kill-server

For OS X in terminal:

killall adb 

After that,restart eclipse and problem will be solved.

Also, check where is your path to adb.exe , is correctly located and can be executed.

Mladen Rakonjac
  • 9,562
  • 7
  • 42
  • 55
  • it doesn't worked i get this message: adb server is out of date. killing... ADB server didn't ACK *failed to start daemon* – user3774763 Jul 18 '14 at 14:07