●BUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the output●NATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other builders●PLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screen●COMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to end●PRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that back●DEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verify●BUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the output●NATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other builders●PLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screen●COMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to end●PRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that back●DEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verify
TestFlight External Testing or Phased Release: Where a Solo Developer's Time Actually Pays Off
When you ship a Rork-built app to other people, you can recruit external testers or let a phased release absorb the risk. Here is how I split my limited time between the two, based on where distribution actually stalls and which three areas still deserve pre-release checks.
I uploaded a build on a Friday evening, assigned it to my external tester group, and assumed two or three pieces of feedback would be waiting by Saturday morning. What was waiting was a notice that distribution had not started. The build had finished processing, but external delivery was sitting in beta review, and it only moved on Sunday afternoon. None of the testers did anything wrong. I had simply counted on a weekend without knowing where the pipeline stops.
Shipping apps as an indie developer means collecting these stopping points one at a time. After stepping on a few of them, something else becomes visible: the bugs that external testing surfaces and the bugs that a gradual public rollout surfaces overlap heavily. When two paths overlap, you get to choose where your limited hours go.
What follows is how I split that time — recruiting external testers versus letting a phased release absorb the risk. The scenario I have in mind is putting a Rork or Rork Max build onto someone else's device for the first time, but the reasoning holds for any Expo project you assembled yourself.
Before recruiting testers, check whether the build needs outside eyes at all
External testing earns its keep when a code path can only be reached by someone whose conditions you do not have. Turn that around: if you can reproduce the path on your own desk, external testing adds waiting and little else.
My sorting rule is blunt. Every change in the release goes into one of three buckets.
Bucket
What belongs there
Value of external testing
Reproducible at my desk
New screens, copy changes, layout tweaks, internal logic
Low. One physical device covers it
Hard to reproduce at my desk
Other people's account states, migration of existing users, push delivery, integrations with other apps
If the middle row is empty for a release, external testing returns one sentence: "Looks fine to me." That is better than nothing, but it still cost you several days for a single round trip.
In apps where per-user state is thin — wallpapers, ambient audio, anything that mostly ships assets — the middle row is empty far more often than you would guess. For a long stretch, roughly four out of five of my updates were screens and asset swaps with no dependency on outside data. During the months I ran external testing on every one of those, my release interval stretched from two weeks to three and the defect count did not visibly move.
External testing stalls on build swaps, not on tester count
The friction in external testing is not recruiting people. It is what happens after you have them, when you replace the build.
Internal testers receive a build as soon as processing completes. External testers receive it after beta review. That much is in every write-up. What matters in practice is the part after that: knowing which changes send you back into review. Get it wrong and distribution stops for a full day.
As far as I have been able to observe, review comes back into play mainly in these situations.
You raise the marketing version — the user-visible number such as 1.8.0
You change reviewable information such as the tester-facing description or screenshots
Enough time has passed that the previous build expired, and you upload a fresh one
Conversely, bumping only the build number while keeping the same marketing version usually goes straight to distribution. The distinction looks trivial and reshapes your entire pre-release week. Push 1.8.0 on Friday and every weekend swap queues behind review. Keep the group on 1.7.9, finish the outside checks, and only then move to 1.8.0 — that single reordering removed most of my weekend stalls.
Official documentation gives this one line: change the version and review applies. It does not mention that the line decides whether your Saturday exists. I do not think you internalize the ordering until you have lost a weekend to it once.
✦
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
✦You will be able to decide, before recruiting a single external tester, whether a given release has anything real to gain from outside eyes
✦You will know in advance which build changes send distribution back into review, so you stop discovering a lost day only after the weekend is gone
✦You will be able to keep only purchases, permissions, and device-specific layout in pre-release testing and hand the rest to a phased rollout, tuned to your own release cadence
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.
Keep only purchases, permissions, and device layout in pre-release testing
Once you decide to run external testing less often, the next question is what you still verify beforehand. I keep three things.
The purchase flow. Buy, restore, and the state transition after cancellation — all three get one real round trip on a physical device. This is the one area I refuse to hand to a phased rollout. If purchases are broken when you ship to 5% of users, that 5% contains people who paid and did not get what they paid for. A crash you can apologize for in the next update. A failed payment is a different category of damage.
Permission dialogs. Photos, notifications, and tracking each appear exactly once per install. Get the order wrong and that device can never verify the correct order again. Skipping the effort of wiping a test device is how a wrong ordering reaches production.
Device-specific layout. Only in the update right after a new screen size appears, I walk the main screens on a device or simulator. This is the one area where more devices genuinely help, so external testers do have an edge. But your tester pool's device mix was already skewed the moment you recruited it, and there is no guarantee the model you care about is in there. If you want to check a specific model, running the simulator is faster.
Stop checking every morning whether the build reached external distribution
I have not abandoned external testing, so there are still releases that use it. The annoying part was having to open App Store Connect just to learn what state a build was in. With six apps, that check alone eats about ten minutes every morning.
I keep a script that queries the App Store Connect API and prints, in one pass, whether each build is processing, waiting on review, or ready to distribute. Below is the portion that does the actual determination. It runs on Node.js 20 or later and depends only on jsonwebtoken.
// check-build-state.mjs// Usage: node check-build-state.mjs <APP_ID>// Setup: create an API key under "Users and Access > Integrations" in App Store// Connect, store the .p8 somewhere safe, and pass the path via env vars.import { readFileSync } from "node:fs";import jwt from "jsonwebtoken";const KEY_ID = process.env.ASC_KEY_ID; // e.g. YOUR_KEY_IDconst ISSUER_ID = process.env.ASC_ISSUER_ID; // e.g. YOUR_ISSUER_IDconst KEY_PATH = process.env.ASC_KEY_PATH; // e.g. /secure/AuthKey_YOUR_KEY_ID.p8const APP_ID = process.argv[2];if (!KEY_ID || !ISSUER_ID || !KEY_PATH || !APP_ID) { console.error("ASC_KEY_ID / ASC_ISSUER_ID / ASC_KEY_PATH and APP_ID are required"); process.exit(2);}// Keep the token under 20 minutes. Beyond that the API answers with 401.function makeToken() { const privateKey = readFileSync(KEY_PATH, "utf8"); return jwt.sign({}, privateKey, { algorithm: "ES256", expiresIn: "15m", issuer: ISSUER_ID, audience: "appstoreconnect-v1", header: { alg: "ES256", kid: KEY_ID, typ: "JWT" }, });}async function api(path, token) { const res = await fetch(`https://api.appstoreconnect.apple.com${path}`, { headers: { Authorization: `Bearer ${token}` }, }); if (res.status === 401) throw new Error("Auth failed. Check that KEY_ID matches the .p8"); if (res.status === 429) throw new Error("Rate limited. Space out the runs"); if (!res.ok) throw new Error(`${path} returned ${res.status}`); return res.json();}// Print processing state, external distribution state, and expiry for the last 5 builds.async function main() { const token = makeToken(); const query = [ `filter[app]=${APP_ID}`, "sort=-uploadedDate", "limit=5", "include=buildBetaDetail,preReleaseVersion", "fields[builds]=version,processingState,expired,buildBetaDetail,preReleaseVersion", "fields[buildBetaDetails]=externalBuildState,internalBuildState", "fields[preReleaseVersions]=version", ].join("&"); const body = await api(`/v1/builds?${query}`, token); const included = new Map((body.included ?? []).map((x) => [`${x.type}:${x.id}`, x])); for (const build of body.data) { const detailRef = build.relationships?.buildBetaDetail?.data; const versionRef = build.relationships?.preReleaseVersion?.data; const detail = detailRef ? included.get(`buildBetaDetails:${detailRef.id}`) : null; const version = versionRef ? included.get(`preReleaseVersions:${versionRef.id}`) : null; const marketing = version?.attributes?.version ?? "?"; const buildNo = build.attributes.version; const processing = build.attributes.processingState; // PROCESSING / VALID / FAILED / INVALID const external = detail?.attributes?.externalBuildState; // e.g. READY_FOR_BETA_SUBMISSION const expired = build.attributes.expired ? " [expired]" : ""; console.log(`${marketing} (${buildNo}) processing=${processing} external=${external ?? "-"}${expired}`); }}main().catch((err) => { console.error(`Could not read build state: ${err.message}`); process.exit(1);});
The part that took me the longest to get right was the combination of include and fields. Adding include=buildBetaDetail is not enough on its own — without fields[buildBetaDetails], the related resource can come back with its attributes stripped and externalBuildState reads as undefined. Related resources arrive flattened in the included array, so I rebuild them into a Map keyed by type:id. Once the shape settled, adding more apps stopped requiring any change to the logic.
To sweep several apps at once, a small shell wrapper is enough.
#!/usr/bin/env bashset -euo pipefailfor APP_ID in 1111111111 2222222222 3333333333; do echo "--- ${APP_ID} ---" node check-build-state.mjs "${APP_ID}" || echo " (could not read)"done
The || echo alongside set -euo pipefail is deliberate: if one app fails, I still want the rest. Halting on the first failure just sends me back to opening App Store Connect.
Decide once each morning whether the rollout continues
Handing risk to a phased rollout means the receiving side needs its own routine. The thing that matters most there, in my experience, is not checking too often.
Right after distribution begins, you want to refresh the numbers constantly. But day-one figures sit on a tiny denominator, and a single crash swings the rate. React to a swing and you will halt updates that were never actually broken, which makes the next release feel dangerous.
I settled on looking once, in the morning, and picking one of three outcomes on the spot.
What I look at
Continue
Halt
Crash rate
Level with the previous version, or better
Clearly worse than the previous version
Crash content
Confined to a few known sites
New sites at launch or around payments
Support mail and reviews
Same pattern as usual
Multiple reports of one symptom in a short window
If two of the three lean toward halting, I halt. If only one does, I continue. This coarse rule left me with less hesitation than a set of precise thresholds ever did. Precise thresholds create their own maintenance work — you end up revising the thresholds instead of shipping.
The split above transfers to generated code, with two assumptions that change.
First, regeneration rewrites parts of the codebase. The build your testers examined and the build produced by a later generation pass are not guaranteed to share the code they looked at. If you are going to run external testing, freeze generation before you distribute, or the review loses its meaning. I leave a build untouched overnight before it goes to testers.
Second, over-the-air updates overlap awkwardly with beta testing. On React Native based setups you can swap the JavaScript side without a store review. That speeds up recovery after a halted rollout, and it also means tester devices can pick up a bundle you never intended them to see. Keeping external testing on its own update channel avoids a confusing week later.
Rork Max, which emits native Apple code, has no such escape hatch. I keep the same overall split, but I weight the three pre-release checks (purchases, permissions, device layout) a little more heavily. With one fewer way to roll back, more of the verification moves to the front.
Take your next release and sort its changes into the first table. If the middle row — anything touching other people's account state or the migration of existing users — comes out empty, that release can skip external testing and start at 5% of a phased rollout. If it is not empty, external testing is worth the days it costs.
Narrowing the decision to one question converts hesitation directly into release speed. Moving external testing from "something I do every time" to "something I do when the release calls for it" is what let me pull my update interval back to where it had been.
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.