-
-
Notifications
You must be signed in to change notification settings - Fork 23
Description
When configuring my Azure pipeline for iOS builds, I’m using two provisioning profiles:
- One for my main app target.
- One for my widget extension
The pipeline fails with the following errors:
Xcode couldn't find any iOS App Development provisioning profiles matching 'com.app.name'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'Runner' from project 'Runner')
and
No profiles for 'com.app.name.HomeWidget' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.app.name.HomeWidget'. Automatic signing is disabled and unable to generate a profile.
With just the provisioning profile for my main app, everything worked fine. As soon as I added the HomeWidget extension and its provisioning profile, the pipeline started to fail.
Is there any special configuration required to ensure both profiles are used for their respective targets?
Thanks!