RORK LABJP
PLAY — Google Play's target API level 36 requirement took effect yesterday, August 31. From today, new apps and updates must target Android 16VISIBILITY — Apps still on API 35 stay listed but disappear for users on newer Android versions. No error is raised; new installs simply fade, which makes the change easy to missEXTENSION — If you missed the deadline, an extension through November 1, 2026 can be requested in Play Console — best filed alongside a concrete migration planAPPLE — On the Apple side, the event lands September 9 and iOS 27 is reported to ship September 14. Testing generated apps on iOS 27 hardware before release week is time well spentEXPO — Expo released expo-paste-input on August 28, a native module that brings image, GIF, and sticker paste to React Native TextInputEAS — EAS Observe reached general availability on August 20, putting crash and performance monitoring on the same EAS platform as builds and updatesPLAY — Google Play's target API level 36 requirement took effect yesterday, August 31. From today, new apps and updates must target Android 16VISIBILITY — Apps still on API 35 stay listed but disappear for users on newer Android versions. No error is raised; new installs simply fade, which makes the change easy to missEXTENSION — If you missed the deadline, an extension through November 1, 2026 can be requested in Play Console — best filed alongside a concrete migration planAPPLE — On the Apple side, the event lands September 9 and iOS 27 is reported to ship September 14. Testing generated apps on iOS 27 hardware before release week is time well spentEXPO — Expo released expo-paste-input on August 28, a native module that brings image, GIF, and sticker paste to React Native TextInputEAS — EAS Observe reached general availability on August 20, putting crash and performance monitoring on the same EAS platform as builds and updates
Articles/Dev Tools
Dev Tools/2026-07-17Advanced

The Update That Failed Because a Profile Expired Three Months Ago

Apple signing assets expire quietly and nothing tells you. Here is how to count the days left with the App Store Connect API and put the audit on a weekly Cloudflare Workers cron.

Rork547Rork Max232App Store Connect API5CertificatesOperations7

Premium Article

I opened an old app to make a small fix. The build succeeded. Submission stopped cold. The provisioning profile had expired three months earlier.

The expiry itself was not the problem. The problem was that nothing existed to tell me it had happened. Certificates and profiles lapse in silence. The next person to attempt a build finds out — and that person is always in a hurry.

Rork and Rork Max deepen this blind spot. Compilation happens in the cloud, submission takes two clicks, and the whole thing feels frictionless. Meanwhile your signing assets sit inside your own Apple Developer account, aging where you cannot see them.

Running several apps in parallel as a solo developer, I could not hold "which profile on which app expires when" in my head. So I handed the counting to a machine.

What Expires, and What Actually Breaks

Get the mechanics right before designing a response. Misreading this table leads to panic over problems that do not exist.

Asset Typical lifetime What happens at expiry
Apple Distribution certificate ~3 years You cannot sign new builds. Shipped apps keep running
Apple Development certificate ~1 year Device debugging signatures stop working
App Store provisioning profile ~1 year You cannot produce submission builds. Shipped apps are unaffected
Ad Hoc / Development profile ~1 year Builds distributed with it stop launching
APNs auth key (.p8) No expiry Never lapses. Only rotate on loss or exposure
App Store Connect API key No expiry Never lapses. Rotate on personnel change or exposure

The two bolded rows are where the confusion lives.

Apps already distributed through the App Store do not stop working when your certificate or profile expires. Apple validates signatures at review and distribution time, not on every launch on every device. Get this backwards and you will respond to an emergency that is not happening.

Ad Hoc and development-signed builds behave differently. There, the profile expiry is enforced on-device, and your testers really do find the app refusing to open.

So the practical damage sorts out like this:

  • Live apps: no user impact — but you cannot fix anything until signing is restored
  • Internal or tester builds: real impact, on the expiry date, with no warning
  • An urgent bug fix: the worst pairing. You rebuild your signing chain exactly when you have no time for it

I went three months without noticing precisely because nothing broke. The absence of damage is what removed every opportunity to find out.

Who Holds the Keys in Rork and Rork Max

Worth pinning down, because a vague answer here becomes "surely Rork handles that for me."

Path Where signing assets live What remains yours to manage
Rork (React Native + Expo) via EAS Build Expo's servers (remote credentials) The certificates in your Apple account, and the slot limit
Rork Max (cloud Mac compilation) Auto-generated through an API key Rork holds The key's role, plus auditing what got generated
Local Xcode archive Your local keychain Everything, backups included

Whichever path you take, the certificates and profiles themselves live in your Apple Developer account. They are your assets. Build services merely issue and fetch them on your behalf. The slot limit fills up in your account. The clock runs down in your account.

Automatic generation is convenient. Convenience is not the same thing as awareness. I have written more on where these boundaries fall in the Rork Max and Expo responsibility split, if that context is useful.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
What actually breaks when a certificate expires — and the widely misunderstood case that does not
A dependency-free Node.js script that reads expiry dates straight from the App Store Connect API
A weekly Cloudflare Workers cron that only speaks up when something is genuinely close to lapsing
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $15 for lifetime access
View Membership →

Related Articles

Dev Tools2026-08-22
Every bulk replace exited zero. The damage was in the lines I did not delete
Run a bulk replace over generated code and the breakage lands on the neighbouring lines, not the matched ones. Here is what broke in a live project, and a dependency-free guard that checks the invariants a replace must preserve.
Dev Tools2026-07-17
Killing the Export Compliance Prompt in Rork Builds for Good
Every Rork and Rork Max build lands in App Store Connect with a Missing Compliance warning. Here is how to decide whether you qualify for the exemption, and how to set it once in app.json or Info.plist so the question never returns.
Dev Tools2026-07-10
The Termination That Never Shows Up as a Crash — Reading JetsamEvent in Rork Apps
Crashlytics is silent, yet reviewers write that the app closes by itself. Most of the time the OS killed it for exceeding its memory limit. Here is how to read JetsamEvent reports and design an image-heavy app's memory budget from measured values.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →