环境:win10+as2.3
问题描述
在android studio中准备运行工程,加载模拟器列表时显示Nothing to show,多次尝试点击运行图标仍然如此,懵逼。。。
解决方案
1.打开cmd;
2.查看哪个进程正在使用5037端口(5037端口是adb使用的端口);
netstat -aon | findstr "5037"
3.杀死查到的进程;
taskkill /pid pid_number /f
4.重新点击as中的运行图标,重启adb服务;
环境:win10+as2.3
在android studio中准备运行工程,加载模拟器列表时显示Nothing to show,多次尝试点击运行图标仍然如此,懵逼。。。
1.打开cmd;
2.查看哪个进程正在使用5037端口(5037端口是adb使用的端口);
netstat -aon | findstr "5037"
3.杀死查到的进程;
taskkill /pid pid_number /f
4.重新点击as中的运行图标,重启adb服务;