gradle: use matching fallback instead of build type

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2023-05-05 02:43:36 +02:00
parent 79c5eb41c3
commit 7778ff63b5
2 changed files with 1 additions and 3 deletions

View File

@ -50,9 +50,6 @@ android {
}
}
}
create("googleplay") {
initWith(getByName("release"))
}
}
lint {
disable += "LongLogTag"

View File

@ -50,6 +50,7 @@ android {
}
create("googleplay") {
initWith(getByName("release"))
matchingFallbacks += "release"
buildConfigField("boolean", "IS_GOOGLE_PLAY", true.toString())
}
}