diff --git a/docs/android.md b/docs/android.md index e69d48757..cc532610a 100644 --- a/docs/android.md +++ b/docs/android.md @@ -65,10 +65,11 @@ cd packages/app # Recent builds npx eas build:list --limit 10 --non-interactive --json | jq '.[] | {platform, status, appVersion, gitCommitHash}' -# Inspect a build +# Inspect a build (the printed `Logs` URL opens the build's Expo dashboard page, +# which has a Submissions section showing the auto-submit to the Play Store). npx eas build:view ``` -Store submission state lives on the Expo dashboard. +The Play Console (Internal testing → Production tracks) is the final confirmation that the binary reached the store. See [docs/release.md](release.md) for the full mobile-build babysitting flow. diff --git a/docs/release.md b/docs/release.md index 22027a3a5..4f6c26ea7 100644 --- a/docs/release.md +++ b/docs/release.md @@ -180,7 +180,7 @@ npx eas build:view --json | jq '.logFiles[]' A build's `gitCommitHash` must match the release tag commit. `status` walks through `NEW` → `IN_QUEUE` → `IN_PROGRESS` → `FINISHED` (or `ERRORED`/`CANCELED`). -Store submissions happen automatically after a FINISHED build — Android via `eas submit`'s submit config and iOS via the Fastlane lane — and their state lives on the Expo dashboard. Heartbeat checks look at `eas build:list` for build state; for store-side submission status, open the Expo dashboard, Play Console, or App Store Connect directly. +Once a build is `FINISHED`, EAS auto-submits it to the store: Android via the `submit` block in `eas.json` (EAS-managed Play Console credentials), iOS via the Fastlane `submit_review` lane (uploads to TestFlight, then submits for App Store review). To confirm the submission landed, run `npx eas build:view ` and open the `Logs` URL it prints — the build's Expo dashboard page has a Submissions section listing each attempt with its store response. App Store Connect (TestFlight tab → ready for review) and the Play Console (Internal testing / Production tracks) are the final ground truth. ### Babysitting mobile after a release