惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
人人都是产品经理
人人都是产品经理
H
Help Net Security
Y
Y Combinator Blog
B
Blog
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
D
Docker
博客园 - 聂微东
B
Blog RSS Feed
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Rork can scaffold a React Native app. It can't follow you...
Dave Kurian · 2026-06-05 · via DEV Community

Rork will scaffold a React Native app faster than you can describe it. Type a prompt, watch an Expo app assemble itself, scan a QR code, and it's running on your phone in Expo Go. For the first afternoon it feels like the mobile sandbox finally caught up to the web ones.

Then you try to put it in front of real users, and you find the wall every sandboxed mobile agent shares: getting a React Native app onto a phone you don't own is not a deploy button. It's a pipeline — and the pipeline lives on your machine and Apple's, not in a browser tab.

The scaffold is the easy 80%

Sandboxed RN agents are genuinely good at the part they own. Screens, navigation, a component tree, some mock data, running in Expo Go. That's real value, and it's the part that demos well.

It's also the part that was never the hard part of shipping mobile. The hard part starts the moment you leave the sandbox's preview.

The App Store is not a deploy button

On the web, "ship it" is a push. On mobile, it's a process that a sandbox structurally cannot run on your behalf:

  • An Apple Developer account ($99/yr) and a Google Play account, in your name.
  • Signing credentials — distribution certificates, provisioning profiles, an Android keystore — generated and stored as secrets.
  • A production build compiled for each store's requirements, with the right bundle identifier, version, and build number.
  • Store review — screenshots, privacy labels, a description, an age rating, and a human at Apple who can reject you.

A browser-tab agent can't hold your signing keys, can't run eas build, can't submit a binary to App Store Connect under your account. None of that is a limitation of the AI — it's a limitation of running inside someone else's sandbox.

Native modules need a real build

The moment your app needs anything past the JS bridge — a camera, notifications, in-app purchases, secure storage, Skia, MMKV — you're past what Expo Go can run.

# This is the line that ends the sandbox preview:
npx expo prebuild            # generates the native ios/ + android/ projects
npx expo run:ios             # compiles the native app locally
eas build --platform ios     # or compiles it in the cloud for the store

Enter fullscreen mode Exit fullscreen mode

Config plugins patch the native projects at build time. A development build replaces Expo Go for anything with a custom native module. This is normal, well-documented Expo work — and it requires a real build environment, a real app.json/app.config.ts, and a real EAS pipeline. A sandbox that only knows how to render into Expo Go can't follow you here.

OTA updates need a channel you own

Once you're shipping, you want to push a JS fix without a new store review. That's eas update — and it pushes to a channel tied to your project and your credentials.

eas update --branch production --message "fix the checkout race"

Enter fullscreen mode Exit fullscreen mode

Installed clients on the production channel pull the new bundle on next launch. That whole loop — your EAS project, your channels, your build profiles in eas.json — is infrastructure you own. It can't live in a tool that doesn't have your account.

The agent that can do this lives in your repo

Here's the thing: a file-system agent can do all of the above. Claude Code or Cursor, sitting in your actual repo, can run eas build, read your eas.json, wire a config plugin, bump the build number, and walk the store submission — because it has access to your machine, your credentials, and your scripts.

The difference isn't intelligence. It's location. The sandbox agent is in a browser tab that ends at the Expo Go preview. The file-system agent is in the repo where the real pipeline runs.

Step Sandboxed agent (Rork-style) File-system agent (Cursor / Claude Code)
Scaffold screens Yes Yes
Run in Expo Go Yes Yes
Add a native module No (past Expo Go) Yes (expo prebuild, config plugin)
Production build No Yes (eas build)
Submit to the stores No Yes (eas submit, your account)
OTA updates No Yes (eas update, your channel)

What it takes to make the last mile boring

The reason the last 20% is brutal isn't that any single step is hard — it's that they're undocumented for your project, so your agent has to re-derive them. Make them explicit and the agent flies through them.

That's what we put in the OTF fitness kit: one Expo codebase that runs on iOS, Android, and web, an eas.json with the build profiles already defined, the EAS Update channel wired, a CLAUDE.md that tells the agent exactly how this app builds and ships, and the store-submission steps written down instead of folklore. You scan the QR to preview it in seconds — same as Rork — but the thing you bought knows how to leave the preview.

Rork getting you to a running preview in five minutes is real, and it's worth something. Just don't mistake it for shipping. The preview is the part that was always easy. The App Store is the part that decides whether anyone but you ever runs your app — and that part lives where your agent and your credentials are, not where the sandbox ends.