RORK LABJP
BUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verifyBUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verify
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.

Rork540Expo SDK2upgradelong-term maintenance2release trainEAS6regression 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-08-21
The four acceptance checks I still run after the build turns green
A successful build does not mean a shippable build. Here are the four failure classes an AI build loop cannot see, and a dependency-free script that inspects the artifact itself before you submit.
📚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 →