In the process of developing with Android studio, sometimes when compiling the runtime, the following prompt appears:
ADB not responding. You can wait More,or kill "Abd.exe" process manually and click ' Restart '
This prompt, in fact, the task Manager does not exist a "abd.exe" process, you can not kill "Abd.exe", at this time, should check the Abd.exe used port 5037 by "who" Occupy, and then kill the "who", and then recompile on the line.
Query Port Occupancy method: Start-run--cmd: Open Command Window, enter: Netstat-aon|findstr "5037"
Enter, normal words will show up:
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 6636
From the last 6636 to know, the pid=6636 process takes up 5037 of this port, opens the Task Manager, displays the PID column, finds the 6636 process, kill it, and then recompile in Android Studio.
ADB occupies a port of 5037, you can view the process number of port 5037, and then kill it with the command line
Reference http://my.oschina.net/haochenhh/blog/284445 http://www.weida888.com/jxcpos/news/2013-7-22/370.html
ADB Not Responding