本文主要是介绍ADB server didn't ACK的解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
国外有大神已经总结得比较全面
Try below steps:
- Close the Eclipse if running
- Go to the Android SDK tools directory in Command Prompt
- type
adb kill-server
- then type
adb start-server
- No error message is thrown while starting ADB server, then adb is started successfully.
- 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的解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!