apps/android/VERSIONING.md
Android release builds use pinned app metadata instead of auto-bumping build.gradle.kts.
apps/android/version.json is the source of truth.version is the Play versionName and uses CalVer: YYYY.M.D.versionCode uses YYYYMMDDNN, where NN is a two-digit build number for that pinned app version.apps/android/Config/Version.properties is generated from version.json and read by Gradle.apps/android/CHANGELOG.md is the Android-only changelog and release-note source.apps/android/fastlane/metadata/android/en-US/release_notes.txt is generated from the changelog.Examples:
version = 2026.6.2versionCode = 2026060201versionCode = 2026060202pnpm android:version
pnpm android:version:check
pnpm android:version:sync
pnpm android:version:pin -- --from-gateway
pnpm android:version:pin -- --version 2026.6.5 --version-code 2026060501
pnpm android:release:signing:plan
MATCH_PASSWORD=<signing repo password> pnpm android:release:signing:sync:pull
pnpm android:release:preflight
When generating apps/android/fastlane/metadata/android/en-US/release_notes.txt, the tooling reads the first available changelog section in this order:
## 2026.6.2## UnreleasedRecommended workflow:
## Unreleased## <pinned version> and run sync againpnpm android:version:sync.apps/android/CHANGELOG.md, then run pnpm android:version:sync again if needed.MATCH_PASSWORD=<signing repo password> pnpm android:release:signing:sync:pull to materialize encrypted Android signing assets from apps-signing.pnpm android:release:preflight to validate Play auth, signing, synced versioning, and release notes.ANDROID_SCREENSHOT_AVD=<avd-name> pnpm android:screenshots to refresh raw Google Play screenshots with a script-managed emulator, or run pnpm android:screenshots when exactly one ADB device is already connected.pnpm android:release:archive to produce the signed Play AAB and third-party APK.pnpm android:release:upload to upload metadata, screenshots, and the Play AAB to Google Play internal testing.The third-party flavor is archived as a signed APK for non-Play distribution. It is not uploaded by the Play release lane.
apps/android/Config/ReleaseSigning.json pins the Android signing assets in the shared private apps-signing repo. The Android pipeline uses the same MATCH_PASSWORD release-owner secret as iOS, but the Android files are managed by scripts/android-release-signing.mjs instead of Fastlane match.
sync:pull decrypts the Play upload keystore and Gradle signing properties into apps/android/build/release-signing/. That directory is gitignored, and Fastlane exports the materialized values as Gradle project properties for the current release command.
If MATCH_PASSWORD is not set, the existing manual Gradle-property signing path still works: provide OPENCLAW_ANDROID_STORE_FILE, OPENCLAW_ANDROID_STORE_PASSWORD, OPENCLAW_ANDROID_KEY_ALIAS, and OPENCLAW_ANDROID_KEY_PASSWORD through your local Gradle user properties before running release tasks.