Unable to create Debug Bridge: Unable to start adb server: error:

 Unable to create Debug Bridge: Unable to start adb server: error: could not install smartsocket listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 (10048) ;

这段话的意思是5037端口被其它应用占用了,找到该端口对应的应用并且干掉该应用,步骤如下: 

1.打开cmd. 
2.输入netstat -aon|findstr “5037”,如下图:

Unable to create Debug Bridge: Unable to start adb server: error:_第1张图片


3.输入tasklist|findstr “5280”,如下图:



3.输入命令taskkill /f /im PPAdbServer.exe(或者:taskkill/f /im PPAdbServer.exe),直接干掉PPAdbServer.exe,如下图:

 

Good luck and God bless you and me,salute for all Android developers,and wish all androiders live long long years old.


你可能感兴趣的:(Android)