RORK LABJP
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 outputNATIVE — 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 buildersPLATFORMS — 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 screenCOMPANION — 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 endPRICING — 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 backDEADLINE — 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 verifyBUILD — 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 outputNATIVE — 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 buildersPLATFORMS — 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 screenCOMPANION — 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 endPRICING — 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 backDEADLINE — 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
Articles/App Dev
App Dev/2026-08-15Intermediate

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.

TestFlight13Phased Release2App Store Connect API5Release Operations2Indie Development23Expo175

Premium Article

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.

BucketWhat belongs thereValue of external testing
Reproducible at my deskNew screens, copy changes, layout tweaks, internal logicLow. One physical device covers it
Hard to reproduce at my deskOther people's account states, migration of existing users, push delivery, integrations with other appsHigh. You need real outside data
Same for everyone who touches itPurchase flow, permission dialogs, device-specific layoutMedium, and internal testers usually suffice

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.

  1. You raise the marketing version — the user-visible number such as 1.8.0
  2. You change reviewable information such as the tester-facing description or screenshots
  3. 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.

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

App Dev2026-08-16
My chart broke on day one, not at scale
A line chart that vanished for anyone with only a few days of data. The cause was a zero-height Y axis turning coordinates into NaN. Here is the measured behavior and the small normalization layer that fixed it.
App Dev2026-08-18
The three places I had to fix before a Rork project actually targeted API level 36
My app.json said targetSdkVersion 36. The value my build actually read was 35. Here is the script that reports the effective value, and how I split my apps between raising, leaving alone, and requesting an extension.
App Dev2026-08-06
Deciding overlay text legibility at ingest time instead of on device — four metrics measured side by side
Moving the question of whether text stays readable over a wallpaper out of the device and into the content pipeline. Four candidate metrics measured across 240 images, including what downscaled judging actually computes.
📚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 →