flutter
从3.13.9
升级:3.27.2
nativeshell组合库中的
1、nativeshell_build库替换为github上的最新代码
可以解决两个问题:
一个是arg("--ExtraFrontEndOptions=--no-sound-null-safety") 在新版flutter中这个构建参数不支持了导致的build错误(即内核build错误)
一个是bin/cache/artifacts/engine/darwin-x64/FlutterMacOS.framework" does not exist. Try running 'flutter precache'. 在build时的报错,因为新版的flutter库的这个目录darwin-x64 下没有直接的FlutterMacOS.framework文件
2、替换nativeshell_build后
(1)要在项目根目录下的toml文件中修改nativeshell_build的依赖
(2)还有rs写的nativeshell-0.1.16的toml文件中修改nativeshell_build的依赖,nativeshell_build = { version="0.1.1", path = "../nativeshell_build" }