Question

I'm using a wildcard provisioning profile, which is the same as my bundle identifier except for the

.* suffix at the end.

When I try to archive my app, it says that the bundle identifier and provisioning profile aren't the same.

Well, duh. They can't be. The provisioning profile needs the .* and the bundle identifier explicitly can't have a .* suffix (the * is an illegal character)

How do I resolve this?

Was it helpful?

Solution

Here's some of Apple's info on wilcard App IDs.:https://developer.apple.com/library/ios/qa/qa1713/_index.html

Basically you need to replace the asterisk in your bundle ID:

Provisioning profile: com.myapps.*
Bundle ID: com.myapps.thisapp
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top