iOS Distribution Certificate expired

My iOS Distribution Certificate is expiring, what should I do? There’s no renew button on the Apple certificates page. Only revoke and download button.

My app is already live on the app store and I choose “let expo handle the process” when I built my app.

Thanks

distribution certificate is only used during build and upload to app store. It can be safely revoked after an app is submitted to the app store. Only push notification credentials need to be valid all the time.

So I can ignore the email from apple and when I build the app again in the future, expo will create one for me, am I right?

Thanks

I next build you will need to run
expo build:ios --clear-credentials --revoke-credentials to recreate everything
or
expo build:ios --clear-dist-cert --clear-provisioning-profile --revoke-credentials to recreate only dist cert and provisioning profile (provisioning-profile needs to be recreated when changing dist cert)

3 Likes

Okay thank you.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.