"DKPhotoGallery-DKPhotoGallery"的签名需要一个开发团队。

8

"DKPhotoGallery-DKPhotoGallery"的签名需要一个开发团队。在Signing & Capabilities编辑器中选择一个开发团队。


这对我有用 https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1149585364 - Mustafa Bhatkar
@MustafaBhatkar,你是对的!这对我也起作用了。 - jux_97
@MustafaBhatkar分享的链接对我也有效。 - Subhangi Pawar
1个回答

11
post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
        config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
        config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
       end
    end
  end

请在此处检查 https://github.com/flutter/flutter/issues/111475


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接