RORK LABJP
ACQUISITION — Rork makes its first acquisition, buying Paperline, a macOS app that generates native Swift apps with AIFUNDING — The $15M seed led by Left Lane Capital backs Rork's push to redefine how mobile apps are built and monetizedGROWTH — Rork Max reportedly hit $1.5M ARR within three days of launch and doubled annual revenue in two weeksENGINE — Rork Max runs on Claude Code and Claude Opus 4.6, the first web Swift builder aiming to replace XcodeSPLIT — Standard Rork uses React Native (Expo); Rork Max generates native Swift across the whole Apple ecosystemPRICING — Start free; paid plans begin at $25/month, with Rork Max at $200/monthACQUISITION — Rork makes its first acquisition, buying Paperline, a macOS app that generates native Swift apps with AIFUNDING — The $15M seed led by Left Lane Capital backs Rork's push to redefine how mobile apps are built and monetizedGROWTH — Rork Max reportedly hit $1.5M ARR within three days of launch and doubled annual revenue in two weeksENGINE — Rork Max runs on Claude Code and Claude Opus 4.6, the first web Swift builder aiming to replace XcodeSPLIT — Standard Rork uses React Native (Expo); Rork Max generates native Swift across the whole Apple ecosystemPRICING — Start free; paid plans begin at $25/month, with Rork Max at $200/month
Articles/Dev Tools
Dev Tools/2026-06-25Advanced

Keeping Your Rork App's Expo SDK Upgradable Year After Year — Release Trains and Regression Safety Nets

A maintenance design for keeping Rork-generated Expo apps running through yearly Expo SDK upgrades without breakage. Covers release-train cadence, dependency pinning, regression safety nets, and splitting OTA from store delivery, with real examples.

Rork447Expo SDK2upgradelong-term maintenancerelease trainEAS5regression testingdependency management

Premium Article

Keeping Your Rork App's Expo SDK Upgradable Year After Year

Late last year I tried to jump one of my neglected indie apps two SDK generations at once, and it cost me half a day. The expo-notifications API had quietly changed, react-native-reanimated version alignment broke, and the build passed while notifications silently stopped arriving on a real device. I spent the day isolating the cause and shipped nothing.

What it taught me is that an Expo SDK upgrade is not a "someday spring cleaning." It is an annual inspection that belongs in your operating rhythm. Rork generates apps on top of Expo (React Native). They run beautifully on day one, but six months later the SDK has moved to a new major, and the gap you ignored quietly compounds.

This article lays out a maintenance design for running that yearly upgrade calmly and continuously. I am sharing the pinning policy, steps, and safety nets I actually use to operate my own apps.

Why Batching Upgrades Always Hurts

Jumping two generations at once multiplies the changes. The SDK core, Reanimated, Gesture Handler, and various native modules each carry their own breaking changes, and they all move at the same time.

The larger the diff, the wider the area you must search when something fails. With one major at a time you can trace "which module broke" linearly. With two majors at once, the combinatorial explosion makes the root cause hard to pin down.

My conclusion is simple: upgrade small, regularly, on a fixed rhythm. The mechanism that makes this real is the release train.

The Release Train: Treat Upgrades Like a Train Timetable

A release train treats an upgrade not as an individual decision but as a train that departs at a fixed time. Anything that misses the train waits for the next departure; you do not cram it into today's run.

I run a three-week sprint with the following rhythm.

WeekWorkGoal
Week 1Diff survey, breaking-change triage, branch creationLock down the blast radius first
Week 2Dependency updates, code fixes, smoke testsCrush breakage internally
Week 3Internal distribution, device checks, store submissionShip with minimal production impact

The key rule is to raise at most one SDK major per departure. Two departures a year means two majors; even one departure keeps you one major behind at worst. That alone structurally avoids the "two generations at once" nightmare.

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
A release-train design that lets you climb one or two Expo SDK majors per year without breakage, mapped onto a concrete three-week sprint
Pinning policy for package.json, the expo install --check workflow, and a breaking-change triage table — the exact rules I run on my own indie apps
OTA versus store delivery split, Sentry release tracking, and pre-decided rollback thresholds for upgrade day, all in one place
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 $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-05-29
Rork × EAS Update Runtime Version Strategy — Upgrading Expo SDK Across 6 Apps Without Breaking Existing Users
A complete record of how I migrated 6 Rork-generated apps from Expo SDK 50 to 51 in three weeks without a single user-visible incident — runtimeVersion policies, full eas.json, a safety-gated publish script, and a 30-minute incident recovery playbook.
Dev Tools2026-03-14
Moving Six Apps to EAS CI/CD — EAS Build, OTA Updates, and GitHub Actions in Practice
How I moved the build and release pipeline for six indie apps to Expo Application Services: EAS Build for iOS and Android, OTA updates with EAS Update, GitHub Actions integration, and honest notes on free-tier limits.
Dev Tools2026-06-25
Why Paying Members See a Paywall in Airplane Mode — Keeping RevenueCat Entitlements Alive Offline
Open the app on a weak connection and a paying subscriber sees a paywall flash for a second. Here is how RevenueCat's customerInfo wavers on an offline launch, and a cache design that keeps entitlements valid with a trust window — written as working code for an Expo app.
📚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 →