RORK LABJP
COMPARE — On August 5, Expo published a head-to-head of three AI models actually building Expo apps. Fable 5 came out ahead on code and UI qualitySDK — Expo SDK 57 is a small, focused release centered on moving apps to React Native 0.86 without turning the upgrade into a project of its ownPREBUILD — expo prebuild now clears and regenerates the native android and ios directories by default, which matters if you have hand-edited native codeOTA — Hermes bytecode diffing means an OTA update ships only the delta rather than the whole JS bundle, saving bandwidth and cost at scaleSIMULATOR — Rork streams a cloud iOS simulator to your browser, so you can test in a real Apple environment without Xcode or Mac hardwareHARDWARE — Rork reaches HealthKit, ARKit and LiDAR, NFC, Dynamic Island, and Metal 3D, well past where no-code tooling usually stopsCOMPARE — On August 5, Expo published a head-to-head of three AI models actually building Expo apps. Fable 5 came out ahead on code and UI qualitySDK — Expo SDK 57 is a small, focused release centered on moving apps to React Native 0.86 without turning the upgrade into a project of its ownPREBUILD — expo prebuild now clears and regenerates the native android and ios directories by default, which matters if you have hand-edited native codeOTA — Hermes bytecode diffing means an OTA update ships only the delta rather than the whole JS bundle, saving bandwidth and cost at scaleSIMULATOR — Rork streams a cloud iOS simulator to your browser, so you can test in a real Apple environment without Xcode or Mac hardwareHARDWARE — Rork reaches HealthKit, ARKit and LiDAR, NFC, Dynamic Island, and Metal 3D, well past where no-code tooling usually stops
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 Update7OTA7Expo161React Native222Rork528runtimeVersionrollback

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-08-09
Measuring Hermes Bytecode Delta Updates: One Added Module Cost 29x More Than One Changed Line
I measured OTA delta sizes against a 2.4MB Hermes bytecode bundle. Changing one line cost 2,104 bytes; adding one module cost 61,197. The widely repeated advice about stable module IDs turned out to matter least.
Dev Tools2026-06-28
Ship EAS Updates to a Few First, and Halt Automatically on Crash Rate
Because OTA updates reach everyone instantly, a bad update reaches everyone instantly too. Here is a three-layer design: ship EAS Update to a small canary, decide expand-or-halt from crash-free rate automatically, and hold a safety net on the device — with working code.
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.
📚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 →