Posts

Post not yet marked as solved
3 Replies
With help from Apple we were able to come up with a solution for the first error:Provisioning profile "iOS Team Provisioning Profile: com.ourapp.widget" doesn't match the entitlements file's value for the application-identifier entitlement.In our xcconfig, we had two keys: one for our main app and one for our extension. ie:PRODUCT_BUNDLE_IDENTIFIER=com.ourappWIDGET_BUNDLE_IDENTIFIER=com.ourapp.widgetAt compile time, xcode10.1 had an internal collision with our main app target using $(PRODUCT_BUNDLE_IDENTIFIER) as the Product Bundle Identifier build setting.The fix was to change PRODUCT_BUNDLE_IDENTIFIER to APP_BUNDLE_IDENTIFIER and then change the main app target's build settings to use this new key $(APP_BUNDLE_IDENTIFIER).