我有一个 Podfile,在构建 Pods.xcodeProj 时最终会包含一个包含的 xcframework,它是一个 Pods.xcodeproj 文件引用,我需要将其作为目标引用添加到其中一个 pod 构建目标。
我认为可以在 Podfilepost_install
阶段做这样的事情,但我无法弄清楚xcodeproj
(A) 找到我需要添加到目标的 Nami.xcframework 引用所需的 gem 语法,然后 (B) 将该文件引用添加到所需的目标(有关我希望调整目标成员资格的框架,请参见下图,我基本上只是想自动检查该目标成员资格框)。
我对这个 Podfile 脚本的开始看起来像:
post_install do |installer|
nami_target = installer.pods_project.targets { |f| f.name == "react-native-nami-sdk" }
#Pseudocode begins here, this is what I cannot figure out
nami_xcframework_fileref = ??
nami_target.addBuildReference(nami_xcframework)
end
感谢您对此的任何帮助,我找到了许多示例 pod 文件脚本,但似乎没有一个完全符合我的要求。