Flutter解决-Error retrieving device properties for ro.product.cpu.abi

今天想运行Flutter项目的时候突然运行失败,查看报错日志:Exit code -1073740940 from C:\SDK\platform-tools\adb -s emulator-5554 shell -x logcat -v time -t ,瞬间懵逼了。。。然后运行flutter doctor 命令后出现一下飘红:Error retrieving device properties for ro.product.cpu.abi……
还好百度了一圈找到了解决方案,下面分享一下,希望能帮到需要帮助的小伙伴~

解决方案:

  • 方法: 把Android Platform Tools 29换成Android Platform Tools 28。
  • 具体步骤如下:
  1. 打开SDK所在文件夹
  2. 移除platform-tools文件夹(确认结束了adb相关进程)
  3. 解压platform-tools 28放进去替换

之后在运行应该就OK了~~~

资源链接如下

Windows: http://dl-ssl.google.com/android/repository/platform-tools_r28.0.2-windows.zip
macOS: http://dl-ssl.google.com/android/repository/platform-tools_r28.0.2-darwin.zip
Linux: http://dl-ssl.google.com/android/repository/platform-tools_r28.0.2-linux.zip

以上链接需要翻墙,提供个百度网盘地址(windows版):
链接:https://pan.baidu.com/s/1SC-3ecvOzEF65500_sp1-w
提取码:8tf1

你可能感兴趣的:(Flutter解决-Error retrieving device properties for ro.product.cpu.abi)