美文网首页
【Xcode】Xcode14.3打包报错

【Xcode】Xcode14.3打包报错

作者: BeethOven | 来源:发表于2023-04-27 16:27 被阅读0次
    3fdc795c4b259d94bfa06fed4e9edf78.jpeg
    Command PhaseScriptExecution failed with a nonzero exit code
    

    全局搜索source="(readlink "{source}")",替换为source="(readlink -f "{source}")"

    Missing file libarclite_iphoneos.a 
    

    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

    相关文章

      网友评论

          本文标题:【Xcode】Xcode14.3打包报错

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