I’m getting two errors with the xcode Archive step:
Code Signing Error: No profiles for 'io.X.Y' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'io.X.Y'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild.
Code Signing Error: Code signing is required for product type 'Application' in SDK 'iOS 11.4'
So I go in, and input the ids of the provisioning profile (which is wildcard matched) and the code signing identity in “force signing build settings” and this time I get the errors:
Code Signing Error: X has conflicting provisioning settings. X is automatically signed, but provisioning profile 26cb1012-ac5f-4935-bbe5-75897567065b has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor, or switch to manual signing in the project editor.
Code Signing Error: Code signing is required for product type 'Application' in SDK 'iOS 11.4'
So these seem to confict. First automatic signing is apparently disabled and i need to specify the profile, but then i specify the profile and then it says it’s automatically signed so I don’t need to specify it.
I can’t find the “build settings editor” that is mentioned in error.
If you use managed profiles please do NOT do this, do not force signing settings. Instead make sure the right signing files are available on bitrise.io , using our codesigndoc tool: iOS code signing - Bitrise Docs
Just run the tool, answer the questions then upload all the files it collects, as those are all required for the type you select.
The problem is that you did not upload all the required ones there - the error comes from Xcode directly and it states that it requires a signing file which is not available.
How do you sign / build the app if you don’t have a Mac right now?