From 02faeeeead0e0a5f47fe21590940b372db3f38e0 Mon Sep 17 00:00:00 2001 From: Lennoard Date: Thu, 21 Aug 2025 10:16:58 -0300 Subject: [PATCH] build: remove deprecated databinding incremental flag and add splashscreen dependency --- app/build.gradle.kts | 4 ++-- common/design/build.gradle.kts | 1 + gradle.properties | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1c167ae..30223c7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,8 +17,8 @@ android { applicationId = AppConfig.appId minSdk = AppConfig.minSdkVersion targetSdk = AppConfig.targetSdkVersion - versionCode = 21 - versionName = "3.0.2" + versionCode = 22 + versionName = "3.0.3" vectorDrawables.useSupportLibrary = true androidResources { localeFilters += listOf("en", "de", "pt-rBR", "tr") diff --git a/common/design/build.gradle.kts b/common/design/build.gradle.kts index 7208696..a0d6dff 100644 --- a/common/design/build.gradle.kts +++ b/common/design/build.gradle.kts @@ -42,6 +42,7 @@ android { dependencies { implementation(libs.androidx.core.ktx) + implementation(libs.androidx.core.splashscreen) api(platform(libs.androidx.compose.bom)) api(libs.androidx.ui) diff --git a/gradle.properties b/gradle.properties index e701fc8..9c751af 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,8 +15,6 @@ org.gradle.jvmargs=-Xmx1536m # Android operating system, and which are packaged with your app's APK # https://developer.android.com/topic/libraries/support-library/androidx-rn android.useAndroidX=true -# Allow databinding to be incremental: -android.databinding.incremental=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official