This question already has an answer here:
- Adb won't start 21 answers
I could not run the android application never on my laptop. Eclipse gives same error constantly, that is "ADB server didn't Acknowledge"
I've tried everything, restart adb from ddms view, from command line (kill-server, start-server), from task manager and restart eclipse. When I manage to start adb server and re-open eclipse, as soon as I run the android application, same error comes to console; ADB server didn't ack.
Could you give an idea except restarting adb
in my case i use the command line
taskkill /f /t /im bas_deamon.exe
(because adb.exe was not started) and adb server is started successfullyIn my pc, i use the command line taskkill /f /t /im wandoujia_daemon.exe (because adb.exe or bas_daemon.exe is not running in my task manager) And... the adb server is started succesfully
Killing the process adb.exe in the TASK MANAGER (to open task manager CTRL+Shift+Esc) solves it in my case. After killing it run adb start-server or adb devices and you should be fine.
Incase if that doesn't work
We can solve this issue so easily.
cd <platform-tools directory>
adb kill-server
adb
is still running. If it is, just killadb.exe
adb start-server
in command promptA way bit difficult approach
Command Prompt (cmd.exe)
find process id of 0.0.0.0
make sure it's adb.exe
kill this process
get ADB back to normal
for more details check it from here