Android在启动adb时失败解决方案
今天在开发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.exe' and can be executed. "
第一步:查看任务管理器,是否关闭了所有adb.exe程序。如果没有关闭,则将全部关闭。接着将android-sdk-windows\platform-tools和android-sdk-windows\tools都加到环境变量中去,测试一下能否启动。如果不能,则运行一下命令行:
adb kill-server
adb start-server
这个时候可能出现
E:\android-sdk-windows\platform-tools>adb kill-server
E:\android-sdk-windows\platform-tools>adb start-server
* daemon not running. starting it now on port 5037 *
ADB server didn't ACK
* failed to start daemon *
如果还是不行这个时候唯一的选择是在eclipse中的android管理器中也就是avd Manager中选择第一个选项虚拟设备virtural device从里面找到一个模拟机启动,当启动起来之后关掉你的eclipse,然后再重新启动就好了。祝你成功!!!
相关文章
通过Html网页调用本地安卓(android)app程序代码
如何使用html网页和本地app进行传递数据呢?经过研究,发现还是有方法的,总结了一下,大致有一下几种方式2013-11-11Android RecyclerView使用GridLayoutManager间距设置的方法
本篇文章主要介绍了Android RecyclerView使用GridLayoutManager间距设置的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-12-12
最新评论