Tencent / QMUI_iOS

QMUI iOS——致力于提高项目 UI 开发效率的解决方案
http://qmuiteam.com/ios
Other
7.05k stars 1.37k forks source link

签署 "QMUIKit-QMUIResources" 需要开发团队 #1456

Closed liam-i closed 1 year ago

liam-i commented 1 year ago

Bug 表现 Product->Archive 之后,报一下错误:

Signing for "QMUIKit-QMUIResources" requires a development team. Select a development team in the Signing & Capabilities editor.

截图

截屏2022-10-26 01 00 00

其他信息

michael2h4ng commented 1 year ago

建议在 Podfile 里添加

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

来源:https://stackoverflow.com/questions/72561696/xcode-14-needs-selected-development-team-for-pod-bundles