Sayaki
Sayaki

Reputation: 789

Do I need to edit provisioning after changing AppID

I have app on appstore. Until this day it was not using push notifications. Right now I would like to add aps to my app. I edited my AppID by generate SSL certificates for my push notification server. Do I also need to regenerate provisioning profile what was associated with this changed AppID?

Upvotes: 1

Views: 470

Answers (1)

SwiftArchitect
SwiftArchitect

Reputation: 48514

Yes

Regenerate Provisioning Profile when changing App ID.

As seen in the documentation, if you change your App ID, you then need to also change your Provisioning Profile.

As exemplified in this diagram below (for a Team Provisioning Profile) and explained here, Provisioning Profile will contain a set of iPhone Development Certificates, Unique Device Identifiers and an App ID.

enter image description here

You can edit an App ID directly using Member Center. In Member Center, select Certificates, Identifiers & Profiles. Under Identifiers, select App IDs. Select the App ID you want to change, and click Edit. Select the corresponding checkboxes to enable the app services you want to allow.

followed by

Later, you’ll regenerate the provisioning profiles that use the App ID.

Upvotes: 3

Related Questions