gpt4 book ai didi

xcode - 使用 Firebase 库时优化 Xcode 构建时间

转载 作者:行者123 更新时间:2023-12-04 11:31:00 25 4
gpt4 key购买 nike

由于我使用 FireStore 和其他几个 Firebase 库进行构建,因此构建时间加倍了。我想知道是否有办法避免每次清理和构建项目时都编译它。

最佳答案

不要清理和构建,只需构建。 ;)

免责声明:在发布之前,当然首选干净的构建。

更新更好的答案:使用 cocoapods-binary插入。

https://guides.cocoapods.org/plugins/pre-compiling-dependencies.html

One solution for this is to not give Xcode the chance to re-compile code. CocoaPods Binary will pre-compile your Pods during pod install, and then add the binary assets (e.g. .framework files) into the generated Xcode projects instead of the source code.



像这样。
plugin 'cocoapods-binary'
use_frameworks!

target "MyApp" do
pod "NeededPod", :binary => true
end

关于xcode - 使用 Firebase 库时优化 Xcode 构建时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58772955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com