美文网首页
Flutter [ERROR:flutter/shell/gpu

Flutter [ERROR:flutter/shell/gpu

作者: BeRicher | 来源:发表于2020-10-07 17:10 被阅读0次

在安卓模拟器上启动hello world,出现 [ERROR:flutter/shell/gpu/gpu_surface_gl.cc(39)] Failed to setup Skia Gr context提示。

解决方法:

在android/app/src/main/kotlin/目录下,找到MainActivity,在onCreate方法的super之前,增加以下代码:

getIntent().putExtra("enable-software-rendering", true)

通知软件使用软件渲染。

但是该参数会导致真机卡顿,如果有个api可以判断当前是否支持gpu渲染就好了。

相关文章

网友评论

      本文标题:Flutter [ERROR:flutter/shell/gpu

      本文链接:https://www.haomeiwen.com/subject/dlnfpktx.html