문제

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?

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top