summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2025-06-30 11:54:35 +0200
committerAlbin <albin@mullvad.net>2025-06-30 13:52:43 +0200
commite7196f194d481bba95f1f65ba02e86013eb78581 (patch)
tree30005e80a40c08b17c080f61f9f8cb50c5bb14db
parent91e70c3ea3038251445d2fcf32c72ceaf5122430 (diff)
downloadmullvadvpn-e7196f194d481bba95f1f65ba02e86013eb78581.tar.xz
mullvadvpn-e7196f194d481bba95f1f65ba02e86013eb78581.zip
Enable alpha publishing of prod app
-rw-r--r--android/app/build.gradle.kts1
-rwxr-xr-xandroid/build.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 0655a3b8e0..1ac3434489 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -56,6 +56,7 @@ android {
playConfigs {
register("playDevmoleRelease") { enabled = true }
register("playStagemoleRelease") { enabled = true }
+ register("playProdRelease") { enabled = true }
}
androidResources {
diff --git a/android/build.sh b/android/build.sh
index 3e63a4ce55..c1c29f55b4 100755
--- a/android/build.sh
+++ b/android/build.sh
@@ -51,7 +51,7 @@ if [[ "$GRADLE_BUILD_TYPE" == "release" ]]; then
elif [[ "$PRODUCT_VERSION" == *"-alpha"* ]]; then
GRADLE_TASKS+=(createPlayDevmoleReleaseDistApk createPlayStagemoleReleaseDistApk)
BUNDLE_TASKS+=(createPlayDevmoleReleaseDistBundle createPlayStagemoleReleaseDistBundle)
- PLAY_PUBLISH_TASKS=(publishPlayDevmoleReleaseBundle publishPlayStagemoleReleaseBundle)
+ PLAY_PUBLISH_TASKS=(publishPlayDevmoleReleaseBundle publishPlayStagemoleReleaseBundle publishPlayProdReleaseBundle)
fi
fi