RORK LABJP
SDK58 — The Expo SDK 58 beta is described as three to four weeks. Stable lands after React Native 0.88 ships, and no date has been published0.88RC1 — React Native 0.88 reached rc.1 on September 16. SDK 58 jumps from 0.86 straight to 0.88, so you take the 0.87 cleanup at the same time9/30 — Apps without completed Google Play developer verification and Play Console registration are subject to removal from September 30, nine days away. Solo publishers are includedKEYWINDOW — When automated dependency updates bump only the client packages, CI stays green and the production iOS build is the thing that failsNEW — Expo Go stopped opening your preview. Here is the first thing to checkRNREPO — The React Native repository moved from facebook/react-native to react/react-native. Worth checking any links or scripts that point at the old pathSDK58 — The Expo SDK 58 beta is described as three to four weeks. Stable lands after React Native 0.88 ships, and no date has been published0.88RC1 — React Native 0.88 reached rc.1 on September 16. SDK 58 jumps from 0.86 straight to 0.88, so you take the 0.87 cleanup at the same time9/30 — Apps without completed Google Play developer verification and Play Console registration are subject to removal from September 30, nine days away. Solo publishers are includedKEYWINDOW — When automated dependency updates bump only the client packages, CI stays green and the production iOS build is the thing that failsNEW — Expo Go stopped opening your preview. Here is the first thing to checkRNREPO — The React Native repository moved from facebook/react-native to react/react-native. Worth checking any links or scripts that point at the old path
ARTICLES

All Articles

All (1025) Getting Started (95) Dev Tools (528) AI Models (114) Business (183) App Dev (105)
Dev Tools/2026-05-02Intermediate

When Your FlatList Starts Stuttering: Migrating Rork Apps to FlashList v2

When your Rork app's long lists start feeling sluggish, migrating to FlashList v2 makes scrolling dramatically smoother. Here is the practical migration path, taking advantage of v2's removal of estimatedItemSize.

Dev Tools/2026-05-02Advanced

10 Refactoring Patterns to Take Rork Max's Generated SwiftUI Code from Demo to Production

Rork Max generates SwiftUI in seconds, but the output won't always pass App Store review as-is. Here are ten refactoring patterns I run on every generation, with before/after code, to ship without rejections.

Dev Tools/2026-05-02Intermediate

Adding Native Modules to Rork-Generated Apps: A Practical Guide to Expo Prebuild

When your Rork prototype needs a native SDK or custom module, Expo Prebuild is the bridge to production. This practical guide walks through the limits of Managed Workflow and the actual commands for moving toward Bare Workflow.

Dev Tools/2026-05-01Advanced

Adding a Notification Service Extension to a Rork App — Rich Push, Encrypted Payloads, and Dynamic Rewriting

Wiring a Notification Service Extension into a Rork-built iOS app — image attachments, end-to-end encrypted payloads, and dynamic APNs payload rewriting — with working Swift code and the production pitfalls that bit me along the way.

Dev Tools/2026-05-01Intermediate

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 Tools/2026-05-01Advanced

Catch Silent Deprecations Before the Next OS Update Breaks Your Rork App

Apple and Google deprecate APIs every year, and your app breaks the morning after. Build the watchdog: a four-layer monitoring setup with concrete CI scripts that catches Required Reason APIs, missing Privacy Manifests, targetSdkVersion shifts, and Expo SDK signals before submission fails.

Dev Tools/2026-05-01Intermediate

Adding iOS 18 Dark / Tinted Icons and Android Themed Icons to a Rork App

A practical walkthrough for shipping iOS 18 dark and tinted icons and Android 13+ themed icons from a Rork-generated project. Asset prep, Expo config, cache pitfalls when replacing icons, and what App Store Connect actually checks for.

Dev Tools/2026-05-01Advanced

Implementing CallKit + PushKit in Rork: Native Call UI and VoIP Push for Voice & Video Apps

A practical, production-grade walkthrough for wiring CallKit and PushKit into a Rork-built voice or video calling app — covering token lifecycle, audio sessions, App Store review risks, and the WebRTC handoff.

Dev Tools/2026-05-01Intermediate

The Warning You Get When You Nest a FlatList Inside a ScrollView in Rork — Patterns That Actually Fix It

When you build a screen in Rork with a header and a long list below it, you'll see the 'VirtualizedLists should never be nested' warning. Here's why it happens and the right ways to fix it using ListHeaderComponent, SectionList, and FlashList.

Dev Tools/2026-05-01Advanced

Implementing Screen Recording and Broadcast in Rork Max — A Production Guide for ReplayKit and MediaProjection

Integrate iOS ReplayKit and Android MediaProjection into your Rork Max app for gameplay recording, tutorial creation, and live broadcasting—covering the full production pipeline.

Dev Tools/2026-04-30Advanced

Rork × AI Moderation Production Guide: Reporting, Auto-Review, and Tiered Sanctions for UGC Apps

A complete production-grade guide to layering AI moderation, reporting, and tiered sanctions into your Rork UGC app. Includes a working three-layer pipeline using OpenAI Moderation, Perspective API, and Cloudflare Workers Queues.

Dev Tools/2026-04-30Intermediate

Fix Disappearing Characters and Jumping Cursors in Rork TextInputs (3 Patterns)

Three state-related patterns that cause TextInput characters to vanish or cursors to jump in Rork-generated React Native apps, with the exact code changes that fix each one.