1.软件冲突。
首先是豌豆荚,尝试关闭豌豆荚,重启eclipse后尝试run as android application....
2.进程里
关闭adb.exe,重启eclipse
3.软件更新
android-sdk的更新
有个老外总结的比较全面:
Try below steps:
1.Close the Eclipse if running
2.Go to the Android SDK tools directory in Command Prompt
3.type adb kill-server
4.then type adb start-server
5.No error message is thrown while starting ADB server, then adb is started successfully.
6.Now you can start Eclipse again.
it worked for me this way, Eclipse should be closed before issuing these commands.
前提是你的adb已经配置好了。 如果这时候依然didn't ACK,那么启动任务管理器,看看是否有adb.exe.有的话关掉,再重复以上动作就可以了。
还有一个比较容易忽视的很重要的问题,就是打开taskmanager的时候,并没有adb.exe,如果这时候你认为绝对不是adb的问题你就错了。cmd打开dos,输入adb kill-server,这个时候才能真正保证kill掉了adb.exe。切记切记!
分享到:
相关推荐
在深入探讨“ADB server didn't ACK终极解决办法”这一主题之前,我们首先需要理解几个关键概念,以便于更好地掌握解决方案的精髓。ADB(Android Debug Bridge)是Android平台下的一种工具,用于实现计算机与Android...
### ADB Server没收到ACK及Daemon启动失败的问题与解决方案 #### 一、问题概述 在进行Android应用程序开发的过程中,开发者可能会遇到以下错误信息:“The connection to adb is down, and a severe error has ...
对于“ADB server didn't ACK && make sure the plugin is properly configure”这个问题,描述中提到的解决方案是针对端口被其他进程占用的情况。具体步骤如下: 1. **检查端口占用**:通过命令行工具(如Windows...
adb server 是如何出日期的解决方案 adb(Android Debug Bridge)是 Android 开发中一个非常重要的工具,它允许开发者在 Android 设备上运行和调试 Android 应用程序。但是,有时在使用 adb 时可能会遇到一些问题,...
因为我更新了最新的adt出现ADB server didn’t ACK, failed to start daemon 然后你想启动一个程序这个时候又会出现 Please ensure that adb is correctly located at ‘E:\android-sdk-windows\platform-tools\adb....
然而,如果启动失败并显示“ADB server didn't ACK”,这表明`adb`服务器无法正常启动,可能是因为有其他进程占用了`adb`所使用的默认端口5037。 在上述例子中,开发者使用了`netstat -aon|findstr "5037"`命令来...