xcode14,pod签名问题

  • 内容
  • 评论
  • 相关
post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
      target.build_configurations.each do |config|
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
    end
  end
end

评论

0条评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注