Configured distribution parameter and disabled proguard

This commit is contained in:
dankito 2024-09-01 22:05:06 +02:00
parent 66b4a1c1af
commit 7580c57433
1 changed files with 9 additions and 1 deletions

View File

@ -137,7 +137,7 @@ android {
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 1
versionName = "1.0.0"
versionName = "1.0.0-Alpha-12"
}
packaging {
resources {
@ -179,6 +179,14 @@ compose.desktop {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "net.codinux.banking.ui"
packageVersion = "1.0.0"
description = "Datenschutzfreundliche Multi-Banking App für die meisten deutschen Banken"
copyright = "© 2024 codinux GmbH & Co.KG. All rights reserved."
vendor = "codinux GmbH & Co.KG"
}
buildTypes.release.proguard {
isEnabled = false
version = "7.4.2"
}
}
}