PM-7156: Publish Play Store and F-Droid artifacts (#1273)

This commit is contained in:
Patrick Honkonen
2024-05-08 23:27:16 -04:00
committed by Álison Fernandes
parent f3f35511a4
commit 8b3f67680a
14 changed files with 1114 additions and 93 deletions

View File

@@ -28,6 +28,8 @@ android {
versionCode = 1
versionName = "2024.05.0"
setProperty("archivesBaseName", "com.x8bit.bitwarden")
ksp {
// The location in which the generated Room Database Schemas will be stored in the repo.
arg("room.schemaLocation", "$projectDir/schemas")
@@ -57,6 +59,12 @@ android {
isDebuggable = true
isMinifyEnabled = false
}
// Beta and Release variants are identical except beta has a different package name
create("beta") {
initWith(buildTypes.getByName("release"))
applicationIdSuffix = ".beta"
}
release {
isDebuggable = false
isMinifyEnabled = true