Android 故障总结

来源:互联网 发布:windows下sftp设置 编辑:程序博客网 时间:2024/06/06 04:22

1.adb.exe 已停止工作 频繁弹出解决方法

安装android studio后运行一个module出现adb.exe 已停止工作
cmd中使用adb shell命令,出现

adb server version (31) doesn’t match this client (39); killing…
error: could not install smartsocket listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。

解决方案

开始–运行–CMD 到命令提示符
- 找到占用端口的所在进程: netstat -aon|findstr “5037”,找到占用adb5037端口的进程

  • 找到占用该进程的名称: tasklist|findstr “1408”

  • 杀掉该进程: taskkill /f /t /im 360MobileLoader.exe

http://blog.csdn.net/urmytch/article/details/72764423

原创粉丝点击