chore(build): disable debug mode in build configuration

Set `IS_DEBUG_ENABLED` to `false` in `app/build.gradle.kts` to prepare
the build configuration for release.
This commit is contained in:
2026-05-30 22:51:25 +02:00
parent 2cf98b89b3
commit 384926cf08
+1 -1
View File
@@ -39,7 +39,7 @@ android {
isShrinkResources = true isShrinkResources = true
isCrunchPngs = true isCrunchPngs = true
proguardFiles.addAll(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), file("proguard-rules.pro"))) proguardFiles.addAll(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), file("proguard-rules.pro")))
buildConfigField("boolean", "IS_DEBUG_ENABLED", "true") buildConfigField("boolean", "IS_DEBUG_ENABLED", "false")
} }
} }