[android] Publish Google Play to production instead of aplha

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-07-29 11:07:39 +02:00
parent 4ddf89eedc
commit dc23230570

View file

@ -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'))
}