美文网首页
Xcode 14.3 file not found: /Appl

Xcode 14.3 file not found: /Appl

作者: dxin_101 | 来源:发表于2023-03-30 15:36 被阅读0次

Xcode 14.3 file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xct...

在pod 文件中 添加 最低版本支持,理由:Xcode 14添加了  Minimum Deployments 11.0

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 file not found: /Appl

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