本文参考:琉璃暖

问题:使用eclipse打包到真机,出现以下
eclipse Please ensure that adb is correctly located at
原因:adb.exe 5037端口被占用

解决方法:杀掉该占用程序,重启eclipse即可
命令如下

//查看5037端口,占用情况
netstat -aon|findstr 5037
//查看该端口对应的exe文件
tasklist|findstr 15388
//杀掉该exe进程,如果杀不掉就使用任务管理器强制杀掉
taskkill /f /im 360MobileLink.exe

实际操作如下:
eclipse Please ensure that adb is correctly located at
eclipse Please ensure that adb is correctly located at

相关文章:

  • 2021-07-12
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2021-12-28
猜你喜欢
  • 2021-08-04
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-18
相关资源
相似解决方案