[android] Update the Google Play release procedure

Before all new Google Play releases were published for phased 10% rollout
in the Production track. Now, a new Google Play release is initially
uploaded into "Closed Beta" track for 100% rollout and then promoted into
"Production" track after testing. The "Closed Beta" track (misleadingly
called "alpha" in the code) is invite-only and currently contains about
~1k users imported Firebase App Tester databases. Invited users can opt in
to install new pre-release versions for testing directly via Google Play.

Android releases are now initially tagged with `YYYY.MM.DD-x-android-rc`
(release-candidate) tags instead of `YYYY.MM.DD-x-android`. The production
`YYYY.MM.DD-x-android` tag is added after promotion in Google Play. This
kicks-off the F-Droid process as well. Huawei's version remains unpublished
until Android gets a green light in Google Play.

This change has two primary outcomes:

1. Users now can receive pre-production ("rc") via Google Play.
   This change uses invite-only "Closed Beta" track, but it can be
   changed to "Open Beta" track later.

2. Android versions in Google Play are now published after pre-production
   testing in a separate track in Google Play. Meanwhile, Google Play
   runs Monkey for free in such tracks and sends useful pre-prod reports.

There are no changes in Firebase App Tester - it works as usual. The primary
difference between App Tester and Google Play Open/Closed Beta is that
AppTester uses "app.organicmaps.beta" applicationId while Google Play uses
"app.organicmaps" id. This efficiently means that versions from App Testers
can be installed in parallel with Google Play, while Google Play's
Open/Closed version update the production app.

Please don't get confused with the word "beta" used in different places.
Google Play Open/Closed Beta actually will receive only pre-production
quality builds. App Tester probably can continue to be used both for
pre-production and ad-hoc experiemental version ("alpha"?).

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2024-03-30 17:04:46 +02:00
parent c3fb956309
commit 9520fd8ca5
2 changed files with 4 additions and 4 deletions

View file

@ -31,7 +31,7 @@ jobs:
# TODO: Find a way to refactor FDroid versioning without that additional commit. # TODO: Find a way to refactor FDroid versioning without that additional commit.
build=$(($(tools/unix/version.sh ios_build) + 1)) build=$(($(tools/unix/version.sh ios_build) + 1))
code=$(($(tools/unix/version.sh android_code) + 1)) code=$(($(tools/unix/version.sh android_code) + 1))
tag=$version-$build-android tag=$version-$build-android-rc
echo "::set-output name=version::$version" echo "::set-output name=version::$version"
echo "::set-output name=build::$build" echo "::set-output name=build::$build"
echo "::set-output name=tag::$tag" echo "::set-output name=tag::$tag"
@ -165,6 +165,7 @@ jobs:
name: ${{ needs.tag.outputs.tag }} name: ${{ needs.tag.outputs.tag }}
tag_name: ${{ needs.tag.outputs.tag }} tag_name: ${{ needs.tag.outputs.tag }}
discussion_category_name: 'Announcements' discussion_category_name: 'Announcements'
prerelease: true
files: | files: |
./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk ./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk
./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk.sha256sum ./android/app/build/outputs/apk/web/release/OrganicMaps-${{ needs.tag.outputs.code }}-web-release.apk.sha256sum

View file

@ -33,7 +33,7 @@ buildscript {
println('Building without Google Firebase Services') println('Building without Google Firebase Services')
} }
classpath('com.github.triplet.gradle:play-publisher:3.8.6') classpath('com.github.triplet.gradle:play-publisher:3.9.1')
classpath('ru.cian:huawei-publish-gradle-plugin:1.4.2') classpath('ru.cian:huawei-publish-gradle-plugin:1.4.2')
} }
} }
@ -442,8 +442,7 @@ task prepareGoogleReleaseListing {
play { play {
enabled.set(false) enabled.set(false)
track.set('production') track.set('alpha')
userFraction.set(Double.valueOf(0.10)) // 10%
defaultToAppBundles.set(true) defaultToAppBundles.set(true)
releaseStatus.set(ReleaseStatus.IN_PROGRESS) releaseStatus.set(ReleaseStatus.IN_PROGRESS)
serviceAccountCredentials.set(file('google-play.json')) serviceAccountCredentials.set(file('google-play.json'))