[android] Fix staged rollout for Google Play

The userFraction is only applicable where releaseStatus=[IN_PROGRESS/HALTED]

Untested.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2021-10-13 12:16:48 +03:00
parent e24a44da22
commit 653907b063

View file

@ -439,7 +439,7 @@ play {
track.set("production")
userFraction.set(Double.valueOf(0.05)) // 5%
defaultToAppBundles.set(true)
releaseStatus.set(ReleaseStatus.COMPLETED)
releaseStatus.set(ReleaseStatus.HALTED)
serviceAccountCredentials.set(file("google-play.json"))
}