您的位置:首页 > 移动开发 > Android开发

【Android调试】 解决The connection to adb is down, and a severe error has occured. ADB server didn't ACK 问

2014-01-16 22:39 597 查看
使用真机调试android程序的时候,有时候会报错:

1.* daemon not running. starting it now *

ADB server didn't ACK

* failed to start daemon *

2.The connection to adb is down, and a severe error has occured.

You must restart adb and Eclipse.

Please ensure that adb is correctly located at 'E:\Develop\adt-bundle-windows-x86\adt-bundle-windows-x86\sdk\platform-tools\adb.exe' and can be executed.

原因:

1.端口被占用;

2.adb没启用;

解决办法:

1.先把eclipse关闭.

2.杀死进程tadb.exe(腾讯手机管家);

3.在管理器转到你的android SDK 的platform-tools下;

3.键入adb kill-server ,如果adb关闭了会提示 server not running *

4.再输入 adb start-server 如果不成功会提示 daemon not running. starting it now on port ***的

而如果成功的话不提示任何语句的.

5.这时再重新打开eclipse,大功告成.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐