adb服务5037端口问题,及日志筛选笔记
adb devices 查看链接设备
adb 5037端口占用解决方法:
# 检查占用5037端口的进程
netstat -aon|findstr 5037
# 可能得到结果,例如:
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 33268
# 杀掉 pid 33268 进程:
taskkill /pid 33268 /f
#检查一下adb服务
adb start-server
* daemon not running. starting it now on port 5037 *