Amit
Amit

Reputation: 645

Do i need to update the push certificate after 1 year of apple membership

As of current date Apple gives 99$ account for ios Appstore. I have an application with push notification services, My Apple developer program is auto renewal, So do i need to update the provisioning profile & push service certificate every year with new build?

Upvotes: 3

Views: 1515

Answers (2)

Nirav Kotecha
Nirav Kotecha

Reputation: 2581

yes, you have to update provision profile and push service certificate every year. Auto renewal will renew your account not certificate.

Upvotes: 2

Ihar Katkavets
Ihar Katkavets

Reputation: 1570

Push certificates are used to send notification message from your server(Provider) to Apple Push Notifications services. enter image description here

Application don't know anything about push notification certificates. So if the expiration time is coming you just need to renew push certificates and add then to Provider server. Don't need to renew provision profile and release the new version of the app.

UPDATE: Added a link to Apple documentation about Communicating with APNs

Upvotes: 5

Related Questions