From f6dfada5bf621d772c7fa7de9991269d0e44f169 Mon Sep 17 00:00:00 2001 From: dankito Date: Tue, 17 Sep 2024 04:10:43 +0200 Subject: [PATCH] Using now the appId of the old Bankmeister app to not have to create a new PlayStore entry, and suffixed develop appId with '.develop' --- composeApp/build.gradle.kts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index 391c03e..84be1eb 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -137,7 +137,7 @@ android { sourceSets["main"].resources.srcDirs("src/commonMain/resources") defaultConfig { - applicationId = "net.codinux.banking.ui" + applicationId = "net.codinux.banking.android" // the appId of the old Bankmeister app to be able to use the old PlayStore entry minSdk = libs.versions.android.minSdk.get().toInt() targetSdk = libs.versions.android.targetSdk.get().toInt() versionCode = 1 @@ -148,18 +148,26 @@ android { excludes += "/META-INF/{AL2.0,LGPL2.1}" } } + buildTypes { - getByName("release") { + named("debug") { + applicationIdSuffix = ".develop" + } + + named("release") { isMinifyEnabled = false } } + compileOptions { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } + buildFeatures { compose = true } + dependencies { debugImplementation(compose.uiTooling) }