skip to Main Content

Here is what I’m seeing in errors when trying to build:

enter image description here

It’s saying I need to select a team in Signing & Capabilities. But I’ve already done that multiple times as you can see in this shot:

enter image description here

Why is it complaining about this?

I am running Xcode beta version 13.3 beta 2. I wonder if that’s to do with this.

4

Answers


  1. I am not getting any signing errors with the latest Stripe iOS SDK on Xcode 13.2.1 Public Release.

    • I’d try logging out of your developer account and logging back in.
      Then clean the build folder and run a fresh build just to rule out
      caching or configuration issues.

    • I’d also try building the app using a previous non-beta (public)
      version of Xcode to confirm that this may be related to the beta
      version of Xcode.

    Seems like there’s an open issue [1] on CocoaPods GitHub repo with similar errors. There’s a workaround suggested in one of the comments that you can try and see if that resolves the errors.

    [1] https://github.com/CocoaPods/CocoaPods/issues/8891

    Login or Signup to reply.
  2. I was just having the same problem with Xcode 14 beta 3 and solved it by going into the Pods folder and finding the offending pod and manually setting the team. See the screenshot below. Hope this helps someone!

    Screenshot of Pod folder in Xcode with "Team" field set to "None"

    Login or Signup to reply.
  3. I’ve got the same issue when change to build with Xcode 14.

    A path on Podfile below should help me resolved the issue.

    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
    

    Reference: https://github.com/CocoaPods/CocoaPods/issues/8891#issuecomment-1201465446

    Login or Signup to reply.
  4. Select Pods in Project, then search Development Team, and select your Team name, it will work!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search