赞
踩
以下是我运行adb devices所遇到的错误:
错误提示:
adb server version (32) doesn't match this client (41);
killing...
* daemon started successfully *
出现这个问题的原因是由于adb的版本是1.0.41,与手机客户端不匹配所导致
解决方法:搜索下载1.0.32版本的adb,将下载好的1.0.32版本的adb.exe替换掉原来SDK中platform-tools目录下的adb.exe。
参照连接:
https://blog.csdn.net/codehxy/article/details/52175186?utm_source=copy
错误提示:
adb server is out of date. killing...
* daemon started successfully *
* List of devices attached
解决方法:
查询adb所使用的端口
adb nodaemon server
查找占用该端口的进程
netstat -ano | find "5037"
之后使用 taskkill /pid 6580 /f 命令杀掉进程释放端口
taskkill /pid 6580 /f
之后出现 PID端口已被释 放就说明已经成功了
参照连接:
https://www.jianshu.com/p/c76255fdaf5a
连接中还指出了其他的解决方法,可根据出现的问题来使用
错误提示:
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
* List of devices attached
运行adb devices命令只出现* List of devices attached
解决方案连接:
http://www.imwen.com/post/318.html
https://blog.csdn.net/yinlin330/article/details/87863029
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。