Android ADB didn't ack issue in eclipse

2019-01-14 13:34发布

I have spent around 5 hrs on this problem. I have read the same question on stackoverflow, but none of the solutions solved my problem... First, it gives me:

[2013-02-28 14:48:21 - adb] ADB server didn't ACK
[2013-02-28 14:48:21 - adb] * failed to start daemon *

To solve that, I kill the adb.exe in task manager, restart eclipse. Then go to DDMS, reset adb. NO LUCK...

Then, I go to command line window, type adb kill-server and adb start-server, it gives me:

adb server is out of date. killing...
ADB server didn't ACK
fail to start deamon

Now I don't know what to do. I have a project to develop on eclipse, so really need to solve this problem soon. Someone please help!!

(As many solution indicated, I killed my adb.exe thousands of times, but it showed up immediately in task manager after 2 seconds. )

标签: android adb
10条回答
Explosion°爆炸
2楼-- · 2019-01-14 13:54

I have an HTC device, whose driver software (HTC Sync) tried to run processes using adb at the same time that I was trying to run from Eclipse. If you have a program like HTC Sync for your device that might have been needed to install the driver, close this program to keep it from executing adb in parallel. So far for me, this has fixed it 100 percent.

查看更多
够拽才男人
3楼-- · 2019-01-14 13:55

If you have your device connected and you are trying to test through an emulator, make sure that a device sync agent isnt running in the background. This relaunches the adb even after you kill it in task manager.

查看更多
Anthone
4楼-- · 2019-01-14 13:58

solved the problem. Because I have a small assistant plugin installed on my pc, it has an adb.exe running in the background all the time. So after I uninstalled the plugin, the error has gone!

查看更多
一夜七次
5楼-- · 2019-01-14 13:58

In my case I was using the mobogeine universal driver, when I end task adb.exe from task manager, It restarts again in 1-2 seconds occupying another port number.

To get rid of this problem I have to disconnect my phone & 1st kill mobogeine driver, then adb.exe does not restarts agian. Now run adb start-server . If the success message shown then everything worked perfectly.

查看更多
倾城 Initia
6楼-- · 2019-01-14 14:03

Sometimes when we are running SnapPea, it is running a background process called "wandoujia_adb". when killing the process and running the command "adb start-server" in cmd promt, i get the following o/p text to cmd promt:

C:\Users**>adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *

查看更多
做自己的国王
7楼-- · 2019-01-14 14:07

I had a mobogenie plugin installed on my machine which was continuously running adb. Uninstalled it and got the problem solved.

查看更多
登录 后发表回答