android: Add early access upgrade fragment

We now have a second build flavor that will determine whether the "Get Early Access" button appears.
This commit is contained in:
Charles Lombardo 2023-05-08 04:49:32 -04:00 committed by bunnei
parent 4e2cdf74a3
commit 7072a9b19c
13 changed files with 419 additions and 2 deletions

View file

@ -112,6 +112,12 @@ android {
productFlavors {
create("mainline") {
dimension = "version"
buildConfigField("Boolean", "PREMIUM", "false")
}
create("ea") {
dimension = "version"
buildConfigField("Boolean", "PREMIUM", "true")
}
}