美文网首页
Xcode 14 打包 pod兼容问题

Xcode 14 打包 pod兼容问题

作者: zhengxiaolang | 来源:发表于2022-09-18 11:35 被阅读0次

    背景:

    Xcode 14发布后,公司CI打包出现pod不兼容问题

    解决办法:

    post_install do |installer_representation|
        installer_representation.pods_project.targets.each do |target|
          target.build_configurations.each do |config|
    #        config.build_settings["DEVELOPMENT_TEAM"] = "your team id"
            config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
            config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
            config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
        end
      end
    end
    

    相关文章

      网友评论

          本文标题:Xcode 14 打包 pod兼容问题

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