Address gradle 9.6 deprecations (#3452)

This commit is contained in:
AntsyLich
2026-06-21 18:42:26 +06:00
committed by GitHub
parent c7e782c179
commit 903add50c9
+2 -2
View File
@@ -71,12 +71,12 @@ android {
} }
buildTypes { buildTypes {
val debug by getting { val debug = getByName("debug") {
applicationIdSuffix = ".dev" applicationIdSuffix = ".dev"
versionNameSuffix = "-${getLatestCommitCount()}" versionNameSuffix = "-${getLatestCommitCount()}"
isPseudoLocalesEnabled = true isPseudoLocalesEnabled = true
} }
val release by getting { val release = getByName("release") {
isMinifyEnabled = Config.enableCodeShrink isMinifyEnabled = Config.enableCodeShrink
isShrinkResources = Config.enableCodeShrink isShrinkResources = Config.enableCodeShrink