【Android Studio】解决adb not responding if youd like to retry...错误

某些手机助手占用adb端口导致出现这种错误

adb运行端口为5037 

命令行输入

netstat -aon|findstr "5037"

得到


看到pid为13120的进程占用了adb端口

根据pid找到进程名

命令行输入:

tasklist |findstr "13120"



进入任务管理器 杀死 shuame_helper进程即可

你可能感兴趣的:(【Android Studio】解决adb not responding if youd like to retry...错误)