RORK LABJP
CLOUD — Rork Max compiles Swift on a cloud Mac fleet and streams the simulator to your browser, so no Xcode or Mac is requiredSIM — The streamed simulator runs at 60fps and accepts real touch input in the browser, letting you feel the app without a deviceNATIVE — You get native capabilities like AR and LiDAR scanning, Metal-backed 3D rendering, and on-device inference with Core MLWIDGET — Home Screen widgets, Dynamic Island, Live Activities, Siri Intents, HealthKit, NFC, and App Clips are all in reachARR — Rork Max reached $1.5M ARR within three days of its February 2026 launch, a fair signal of demand for native generationIOS27 — The iOS 27 public beta arrived in mid-July, so now is the time to check generated apps ahead of the autumn releaseCLOUD — Rork Max compiles Swift on a cloud Mac fleet and streams the simulator to your browser, so no Xcode or Mac is requiredSIM — The streamed simulator runs at 60fps and accepts real touch input in the browser, letting you feel the app without a deviceNATIVE — You get native capabilities like AR and LiDAR scanning, Metal-backed 3D rendering, and on-device inference with Core MLWIDGET — Home Screen widgets, Dynamic Island, Live Activities, Siri Intents, HealthKit, NFC, and App Clips are all in reachARR — Rork Max reached $1.5M ARR within three days of its February 2026 launch, a fair signal of demand for native generationIOS27 — The iOS 27 public beta arrived in mid-July, so now is the time to check generated apps ahead of the autumn release
Articles/Dev Tools
Dev Tools/2026-07-26Advanced

What Filtering Out Prerelease OS Devices Cost Me — Separating Telemetry Tracks Instead of Dropping Them

Filtering prerelease OS devices out of telemetry left me with no warning signs on GA day. Here is the rebuild: an os_track dimension, a remote GA baseline, split alert thresholds, and a release gate that separates blockers from fixes.

Rork520React Native212Expo150TelemetryRelease EngineeringiOS 27

Premium Article

The morning after the fall OS release shipped, I opened Crashlytics and stopped scrolling.

Four unfamiliar stack traces sat at the top of a list that had been quiet the day before. They weren't from the build I had just pushed. They were from a version that had been live for two weeks.

The evidence I needed had been available all summer. I had thrown it away myself.

Filtering them out made sense at the time

Running six apps solo as an indie developer, I get maybe a few minutes a day with a dashboard open. Noise in that window is expensive.

Devices on the public OS beta were a small slice of sessions but carried a visibly worse crash rate. That slice dragged the overall crash-free number just below my alert threshold. The alert fired, I opened it, and every time the answer was the same: a beta-only problem, my build untouched.

After the third or fourth false alarm in a month, I added a branch that skipped telemetry and crash reporting initialization on prerelease devices. The numbers went quiet.

That quiet is what I would undo if I could pick one decision to take back.

Filtering creates "invisible," not "not happening"

People on the public beta don't disappear when the OS ships. The opposite happens: on release day, the general population upgrades onto the same major version all at once.

Every defect those beta devices could have shown me over the summer — a few dozen reports, spread across weeks, with time to fix them — arrived instead as a few thousand reports in a single morning.

There's a second thing I only understood in hindsight. Fewer than half of the crashes on beta devices were actually OS bugs. Most were places where my own code had been getting away with something.

An async completion touching a view that had already been torn down. Date parsing that leaned on locale-specific implementation details. A force-unwrap on a path where the value had always happened to be there.

The OS change just surfaced them. Labeling a crash "beta-related, revisit later" was, in practice, me waving my own bugs through one at a time.

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
Deriving os_track from Platform.Version with a remote GA baseline that self-corrects on GA day
Split crash-free thresholds — 99.5% for ga, 98.0% for prerelease — so alerts stop crying wolf
A release gate that keeps prerelease findings in warnings instead of quietly shelving them
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-07-15
The Comma That Fell to the Start of a Line: Rork, Quote Cards, and Japanese Line Breaking
React Native's Text component does not guarantee Japanese line-breaking rules. Here are the violation rates I measured, a WORD JOINER implementation that survives copy and VoiceOver, an onTextLayout audit harness, and how Rork Max (SwiftUI) differs.
Dev Tools2026-07-10
Adding React Compiler to Expo Let Me Delete 41 Hand-Written memo Calls
I enabled React Compiler on Rork-generated React Native screens and measured the rerender counts with Profiler. Here is how I decided which memo and useCallback calls were safe to delete, how to find the components the compiler bailed out on, and how to catch regressions in CI.
Dev Tools2026-07-07
The App Icon Badge Still Says 3 — Rebuilding Expo Badge Counts Around a Single Source of Truth
Why an Expo app's icon badge drifts out of sync with real unread counts and refuses to clear — and how to rebuild it around a single source of truth, with working recompute-and-sync code and the production pitfalls that bite you.
📚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 →