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

Viewed 1344

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?

2 Answers

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

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

Related