Xcode 14 打包 pod兼容问题

2022-09-18  本文已影响0人  zhengxiaolang

背景:

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
上一篇下一篇

猜你喜欢

热点阅读