From dc2323057047d757eea0695c80990c23434f45f9 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Mon, 29 Jul 2024 11:07:39 +0200 Subject: [PATCH] [android] Publish Google Play to production instead of aplha Signed-off-by: Alexander Borsuk --- android/app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 3b7dc6cff7..fc5cec8559 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -443,9 +443,12 @@ task prepareGoogleReleaseListing { play { enabled.set(false) - track.set('alpha') + track.set('production') defaultToAppBundles.set(true) releaseStatus.set(ReleaseStatus.IN_PROGRESS) + // With 0.2 instead of 0.2d there is an error: + // Cannot set the value of extension 'play' property 'userFraction' of type java.lang.Double using an instance of type java.math.BigDecimal. + userFraction.set(0.2d) serviceAccountCredentials.set(file('google-play.json')) }