RORK LABJP
MAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn'tMAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn't
Articles/Dev Tools
Dev Tools/2026-06-28Advanced

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.

Rork502Expo139EAS Update6OTA6indie developer37

Premium Article

OTA updates — swapping the JavaScript bundle — have a big upside: you can deliver a fix without waiting for store review. But the same property is also the scary part. If a good update reaches everyone instantly, so does a bad one.

As an indie developer at Dolice, I once pushed a small fix over the air and dragged in a bug that crashed on launch for one specific device configuration. For the tens of minutes until I noticed and reverted, everyone who received the update could not open the app. The cause was a single line of code, but the real problem was the delivery method: it reached everyone at once.

This article lays out a three-layer design: ship EAS Update to a few first, let crash-free rate decide expand-or-halt automatically, and hold a safety net on the device too.

Why "ship to everyone at once" is dangerous

With store delivery, review and phased release act as buffers even if a bad build ships. OTA removes those buffers to gain speed, so you have to provide the buffers yourself.

DeliveryReach of a bad updateGrace before you notice
Instant to everyoneAll usersAlmost zero
Canary 5%5% of usersYou can decide before expanding
Canary + auto-rollbackOnly part of the 5%Minutes until the machine halts it

The goal is the bottom row: a state that does not rely on human watching, halts delivery on a bad signal, and lets the device defend itself.

Layer one: canary delivery via rollout percentage

EAS Update has a rollout feature that controls what percentage of devices receive a single update. Publish to a small fraction first, not everyone.

# ship to 5% first
eas update --branch production \
  --message "fix: crash on cold start" \
  --rollout-percentage 5
 
# expand in steps if all is well
eas update:edit --branch production --rollout-percentage 25
eas update:edit --branch production --rollout-percentage 100

Bumping the percentage by hand is fine, but visually gathering the deciding signal (crash-free rate) every time is impractical. We automate that in the next layer.

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
Concrete commands and operations for canary delivery via EAS Update rollout percentage
A script that mechanically decides expand/hold/rollback from crash-free rate
A device-side safety net using expo-updates to catch crash loops and fall back to the embedded bundle
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-06-24
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.
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-07-04
Should You Show a Read More Link? Let the Rendered Text Decide in Rork (Expo)
Clamping a product description to three lines and adding a Read more toggle sounds simple, until the toggle also appears under single-line text. This walks through measuring the real line count with onTextLayout so the toggle only shows when text actually overflows, covering iOS vs Android quirks, expand animation, and font scaling.
📚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 →