iOS项目中集成Flutter的最新适配升级
程序员文章站
2022-04-16 08:16:00
如果你在2019年8月之前将Flutter添加到现有iOS项目,本文值得你一看。 在2019年7月30日,合并合并请求flutter / flutter#36793之前Flutter 1.8.4-pre.21, 将Flutter添加到现有的iOS应用程序需要更改Podfile, 并在现有Xcode项 ......
如果你在2019年8月之前将flutter添加到现有ios项目,本文值得你一看。
在2019年7月30日,合并合并请求之前flutter 1.8.4-pre.21
,
将flutter添加到现有的ios应用程序需要更改podfile,
并在现有xcode项目中添加运行脚本构建阶段。
要在此拉取请求之后更新到flutter,您必须更改podfile,删除“运行脚本”构建阶段,然后重新生成podhelper脚本。
podfile的改变
以前,需要将以下几行添加到podfile
:
flutter_application_path = 'path/to/my_flutter/' eval(file.read(file.join(flutter_application_path, '.ios', 'flutter', 'podhelper.rb')), binding)
这应该更新为:
flutter_application_path = 'path/to/my_flutter/' load file.join(flutter_application_path, '.ios', 'flutter', 'podhelper.rb') target 'myapp' do install_all_flutter_pods(flutter_application_path) end target 'myapptests' do install_all_flutter_pods(flutter_application_path) end
构建阶段,用于构建dart代码
以前,需要将构建阶段添加到现有xcode项目中:
"$flutter_root/packages/flutter_tools/bin/xcode_backend.sh" build "$flutter_root/packages/flutter_tools/bin/xcode_backend.sh" embed
此构建阶段不再是必需的,必须删除。
重新生成podhelper.rb
cd 'path/to/my_flutter/' rm .ios/flutter/podhelper.rb flutter build ios
下一篇: goweb-动作