美文网首页
xcode14.3 编译报错: File not found:

xcode14.3 编译报错: File not found:

作者: sunney0 | 来源:发表于2023-05-23 13:30 被阅读0次

xcode14.3 编译报错:
File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

podfile文件末尾 追加下面代码即可:(链接:https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3

post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end

相关文章

网友评论

      本文标题:xcode14.3 编译报错: File not found:

      本文链接:https://www.haomeiwen.com/subject/tiexedtx.html