Flutter stable 1.0.0 集成打包失败的问题

Xcode 体现的问题是


Xcode Error

但其实质是


Shell

然后搜索相关的 Issue 得到 https://github.com/flutter/flutter/issues/24239

但是搜索工程的配置和脚本


xcconfig

看到这里也明白了为什么之前有解决方案是 

In the meantime (in XCode), you can try and go to Runner (Poject) -> Build Settings (Tab), scroll down and set "TRACK_WIDGET_CREATION" = false under "User-Defined"

为什么不生效,因为及时为 false, 也仍然会设置 

track_widget_creation_flag

那么要么是修改脚本,要么是把 xcconfig 中的 

TRACK_WIDGET_CREATION=true

给删掉.

最终我切回来 beta 重新创建了一个 Module 来对比发现差异的,

[✓] Flutter (Channel beta, v1.0.0, on Mac OS X 10.14 18A391, locale zh-Hans-CN)

嗯,我也就先留在这里了.

你可能感兴趣的:(Flutter stable 1.0.0 集成打包失败的问题)