52

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

Maveňツ
  • 1
  • 12
  • 50
  • 89
ydmpcn
  • 587
  • 1
  • 4
  • 10
  • you are trying to run the app on a phone or emulator? – andrei Oct 21 '14 at 08:39
  • 1
    if you are using Genymotion here is one solution http://stackoverflow.com/questions/5703550/my-eclipse-adb-server-didnt-ack-failed-to-start-daemon – LOG_TAG Nov 14 '14 at 07:50

8 Answers8

8

For Mac users, what worked for me was:

  1. Open Activity Monitor (equivalent to Windows task manager)
  2. Kill the adb task
  3. Restart adb
Reefwing
  • 2,242
  • 1
  • 22
  • 23
4

Please kill adb by command:

taskkill /f /im "adb.exe"

then, re-start it with command:

adb start-server

It work very fine for me :)

Dong Thang
  • 410
  • 6
  • 6
2

Look for typos in the ~/.android/adb_usb.ini file. This problem can be caused if that file gets messed up.

Jo Jo
  • 7,245
  • 5
  • 34
  • 49
1

In 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

nam
  • 11
  • 1
0

In addition to @maveňツ solution.

Actually we have to kill the process using this address 0.0.0.0:0, that's why for most of the people killing adb.exe from task manager was working (In my case I was not able to see it even Task Manager).

Following the @maveňツ steps I find out that some other process was using this address. I went ahead to kill it, it gave me ACCESS DENIED as Error.

So using the tasklist|findstr **** i find out the name of the process and killed it from task manager.

There after it started working.

In my case bas_daemon and bas_helper were using this address both of which corresponds to MOBOROBO

DeltaCap019
  • 6,532
  • 3
  • 48
  • 70
0

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 successfully

beginner1417
  • 67
  • 1
  • 7
0

Kill ADB from command prompt. Kill eclipse also from command prompt. Start adb server from there using [adb start-server] And start again.

-1

I believed you've checked the port number, and restart adb. But have you install proper android driver on your computer. Some universal android driver may not work on your computer, you'd better installed the driver provided by your mobile manufacturer, if you can't find the driver on manufacturer's website, consider download its software suit, it may include the driver.

Sean
  • 1