美文网首页
Xcode 14.3 - Beta File not found

Xcode 14.3 - Beta File not found

作者: ienos | 来源:发表于2023-05-14 10:02 被阅读0次

File not found: /Users/johnson/Downloads/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

由于 Xcode 14 开始,增加了最低版本支持 Minimum Deployments 11.0
根据报错内容,所有的 pod 库也会有相应的最低版本支持问题

所以在 podfile 文件中,增加以下内容

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'] = '11.0'
         end
    end
  end
end

相关文章

网友评论

      本文标题:Xcode 14.3 - Beta File not found

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