Warning
T3 Code Mobile is currently in development and is not distributed yet. If you want to try it out, you can build it from source.
Note
Uses native modules so using Expo Go is not supported. You need to use the Expo Dev Client.
This app has three variants:
development: Expo dev client, installable side-by-side asT3 Code Devpreview: persistent internal preview build, installable side-by-side asT3 Code Previewproduction: store/release build asT3 Code
Run commands from apps/mobile.
T3 Connect is optional and disabled in a fresh clone. Public configuration belongs in the
repository-root .env or .env.local, not an apps/mobile/.env file. See
../../.env.example.
Start Metro for the dev client:
vp run dev:clientMetro keeps its transform cache between ordinary starts. If the cache itself is causing stale or invalid output, clear it for one development-client start:
vp run dev:client:resetRun that reset once after installing or changing the Uniwind dependency patch. Cached transforms can otherwise reference its previous pnpm package path. Ordinary Metro starts still keep the cache.
Component edits use Fast Refresh. Connection-runtime edits replace the active Effect layer through a stable atom runtime, preserving navigation and existing atom subscribers. Replaced registries and managed runtimes dispose their resources; the app does not force a JavaScript reload. The Uniwind patch skips global style invalidation when generated styles and themes are unchanged, while real style changes still refresh. See mobile development lifecycle for the lifetime boundaries.
Build and run the local iOS dev client:
vp run ios:devIf your Xcode account only has a Personal Team, use a bundle identifier you control and opt into the reduced-capability local build. Personal Team builds omit the widget and share extensions, push entitlement, and native Sign in with Apple entitlement; builds without this opt-in are unchanged.
T3CODE_IOS_PERSONAL_TEAM=1 \
T3CODE_IOS_PERSONAL_TEAM_BUNDLE_ID=com.example.t3code.dev \
vp run ios:devBuild and install a self-contained Release app that does not need Metro:
vp run ios:releaseThe Personal Team equivalent also needs a unique bundle identifier:
T3CODE_IOS_PERSONAL_TEAM=1 \
T3CODE_IOS_PERSONAL_TEAM_BUNDLE_ID=com.example.t3code \
vp run ios:releaseBuild and run the local iOS preview app:
vp run ios:previewForce the review diff highlighter engine:
EXPO_PUBLIC_REVIEW_HIGHLIGHTER_ENGINE=javascript vp run ios:devjavascript is the default and recommended setting for the review diff screen. Set EXPO_PUBLIC_REVIEW_HIGHLIGHTER_ENGINE=native only when you explicitly want to test the native Shiki engine.
Inspect the resolved Expo config for a variant:
vp run config:dev
vp run config:previewRun static checks for mobile native code:
node ../../scripts/mobile-native-static-check.tsThe native lint task runs SwiftLint for Swift plus ktlint and detekt for Kotlin. Missing native tools are reported as warnings and skipped locally. CI installs the default toolset from apps/mobile/Brewfile before running the native checks.
Preview and production variants use Expo fingerprinting so OTA updates only reach binaries with matching native dependencies, config plugins, and patches. CI uses the preview:dev profile to reuse a compatible native build when possible.
The development variant uses appVersion to avoid recalculating the native fingerprint for each Metro launch manifest. MOBILE_VERSION_POLICY can override either default. If you distribute a custom Release build with the development identity and publish OTA updates to it, set MOBILE_VERSION_POLICY=fingerprint for both its build and updates. Changing the runtime policy requires a native rebuild for OTA matching; an existing dev client can still load local Metro bundles.
For preview or production EAS environments, set T3CODE_CLERK_PUBLISHABLE_KEY,
T3CODE_CLERK_JWT_TEMPLATE, and T3CODE_RELAY_URL
as EAS environment variables. Expo config maps the canonical values into the mobile build.
Create a PR preview dev-client build manually:
vp run eas:ios:preview:devCreate a cloud dev-client build:
vp run eas:ios:devCreate a persistent preview build:
vp run eas:ios:previewAndroid equivalents:
vp run eas:android:dev
vp run eas:android:preview:dev
vp run eas:android:preview