RORK LABJP
FUNDING — Rork raised a $15M seed led by Left Lane Capital, with Peak XV, True Ventures, Goodwater, and a16z Speedrun joiningENGINE — Rork Max runs on Claude Code and Claude Opus 4.6; it drew 8M+ views on X and doubled annual revenue in two weeksSWIFT — Rork Max is the first web-based Swift app builder, positioned to replace Apple's traditional XcodePRODUCT — Rork Max covers the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageCLASSIC — The original Rork uses React Native (Expo), building iOS/Android apps from a plain-English descriptionPRICING — Start free; paid plans begin at $25/mo, and Rork Max is $200/moFUNDING — Rork raised a $15M seed led by Left Lane Capital, with Peak XV, True Ventures, Goodwater, and a16z Speedrun joiningENGINE — Rork Max runs on Claude Code and Claude Opus 4.6; it drew 8M+ views on X and doubled annual revenue in two weeksSWIFT — Rork Max is the first web-based Swift app builder, positioned to replace Apple's traditional XcodePRODUCT — Rork Max covers the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageCLASSIC — The original Rork uses React Native (Expo), building iOS/Android apps from a plain-English descriptionPRICING — Start free; paid plans begin at $25/mo, and Rork Max is $200/mo
Articles/Dev Tools
Dev Tools/2026-06-24Advanced

When EAS Update Ships but the Bug Won't Die — Why OTA Stalls Silently, and How I Operate Around It

EAS Update can succeed and still fail to reach a slice of your users. These are field notes on runtimeVersion drift, updates that publish but never get adopted, and choosing the right rollback — with the instrumentation that actually helped on my Rork apps.

EAS Update5OTA5Expo97React Native180Rork443runtimeVersionrollback

Premium Article

The relief you feel after wiring up EAS Update tends to curdle into a different anxiety after a while: "eas update succeeded. It printed Published. And yet the bug reports keep coming." On one of the Rork-built apps I run as an indie developer, I once shipped the same fix two or three times over. The problem was never the code. The update was quietly failing to reach a portion of devices.

OTA delivery is a genuinely powerful way to erase store-review latency. But a publish succeeding and that publish actually rendering on a user's screen are two different events. This article takes the "I shipped it and nothing changed" situation apart, isolates the cause, and lays out the operational habits that keep it from recurring. These are field notes from where I tripped, not a tidy tutorial.

"Published" means the publish succeeded, not that it was adopted

The Published that eas update returns means a new update was registered on EAS's servers. Between there and actually running on a device, there are several gates.

StageWhat it meansWhat failure looks like
PublishThe update is registered with EASThe CLI errors out, so you notice immediately
MatchingThe device runtimeVersion equals the update runtimeVersionA mismatch means it never arrives — silently
DownloadThe bundle is fetched on launchDelayed depending on network and check settings
ApplyThe new bundle takes over on the next launchThe very first launch still runs the old bundle

The cruel one is the second gate, matching. The CLI shows no error. The publish succeeds and the update appears in the dashboard. Yet devices whose runtimeVersion doesn't match receive nothing at all. "It succeeded but nothing was fixed" is, more often than not, exactly this.

The first thing to check is which runtimeVersion the update is bound to

Triage starts by comparing the runtimeVersion of the update you published against the runtimeVersion of the build your users are actually running.

# List published updates with their runtimeVersion
eas update:list --channel production --json --non-interactive \
  | jq '.[] | {id, runtimeVersion, message, createdAt}'

If that runtimeVersion doesn't match the runtimeVersion of the build currently live in the store, the update will not reach current users. You can read the live build's value from the build list.

# Check the runtimeVersion carried by recent builds
eas build:list --platform ios --status finished --limit 5 --json --non-interactive \
  | jq '.[] | {id, runtimeVersion, appVersion, channel}'

If those two values disagree, it isn't a code problem. You need to re-publish targeting the runtimeVersion of the live build. I learned this the slow way, re-shipping correct code again and again before checking the one thing that mattered. Once I made this the first thing I look at, triage got dramatically faster.

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
The common ways an OTA update publishes successfully yet never lands on devices, plus a five-minute triage to find the cause
How to prevent runtimeVersion drift by design, and how to read adoption across a mixed-binary install base
The real difference between republish, channel:edit, and embedded rollback — and how to pick the right one per type of incident
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-30
Growing a Staged OTA Update System Without Breaking It
Shipping an EAS Update to every user at once is dangerous. From channel design to staged rollout to automatic rollback, here is the delivery architecture I settled on across 50M cumulative downloads, with working code.
Dev Tools2026-05-01
EAS Update Published but Nothing Changes? Five Patterns That Quietly Break OTA Delivery in Rork
You ran eas update, the CLI showed a green Published, but your iPhone keeps loading the old code. Here are the five patterns I keep running into, plus a five-minute diagnostic flow you can use the next time OTA goes silent.
Dev Tools2026-06-23
The Private Screen That Lingers in the App Switcher — Hiding the Snapshot iOS Takes the Moment You Background Your App
When you send a React Native app generated by Rork to the background, iOS photographs the current screen for the App Switcher and writes it to disk. Journals and personal input screens linger there in plain sight. This walks through the iOS privacy overlay (why inactive, not background), Android's FLAG_SECURE, scoping it to sensitive screens only, and screenshot detection — all in working code.
📚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 →