美文网首页
Xcode Build Error

Xcode Build Error

作者: GUIYIVIEW | 来源:发表于2023-09-21 11:38 被阅读0次
  1. Xcode 15限制最低支持版本,修改三方支持版本,iOS Deployment Target
SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target
post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
    end
  end
end

若是私有库,直接升级支持版本即可。

  1. Xcode 15 安装三方库报错
error: Sandbox: rsync(2548) deny(1) file-write-create

Build Settings 中搜索 User Script Sanboxing 设置为 No

image.png

相关文章

网友评论

      本文标题:Xcode Build Error

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