adb启动问题:Invalid argument: cannot open transport registration socketpair could not read ok from ADB Server failed to start daemon * error: cannot connect to daemon 解决办法: 关闭系统自带的防火墙,重启OK (之前一直是关闭的,使用TeamViewer的时候把防火墙打开了) 另附解决adb端口占用问题解决: 1.adb nodaemon…
执行adb devices时,如果出现以下错误: * daemon not running. starting it now on port 5037 * ADB server didn't ACK * failed to start daemon * error: cannot connect to daemon 可以尝试一下方法: 1. 强制结束adb.exe进程: 2. 重启adb server: adb start-server…
在使用真机调试Android程序时,报错如下: could not read ok from ADB Server * failed to start daemon error: cannot connect to daemon 首先,打开命令行工具,找出占用5037端口号的对应pid号 netstat -ano | findstr :5037 如果端口被占用,在任务列表中找到占用端口的进程 tasklist | findstr processID 打开任务管理器,将对应pid号的进程杀死.然后…