diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index f8467b4..e805548 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/gradle/sweet-dependency/sweet-dependency-config.yaml b/gradle/sweet-dependency/sweet-dependency-config.yaml index fbbeda3..ee9abe9 100644 --- a/gradle/sweet-dependency/sweet-dependency-config.yaml +++ b/gradle/sweet-dependency/sweet-dependency-config.yaml @@ -25,13 +25,13 @@ plugins: version: 8.1.2 org.jetbrains.kotlin.android: alias: kotlin-android - version: 1.9.10 + version: 1.9.20 com.highcapable.flexilocale: alias: flexi-locale version: 1.0.1 com.google.devtools.ksp: alias: kotlin-ksp - version: 1.9.10-1.0.13 + version: 1.9.20-1.0.14 libraries: com.fankes.projectpromote: diff --git a/module-app/build.gradle.kts b/module-app/build.gradle.kts index 5542c28..f09350f 100644 --- a/module-app/build.gradle.kts +++ b/module-app/build.gradle.kts @@ -59,7 +59,7 @@ androidComponents { onVariants(selector().all()) { it.outputs.forEach { output -> val currentType = it.buildType - val currentSuffix = property.github.ci.commit.id?.let { suffix -> if (suffix.isNotBlank()) "-$suffix" else "" } ?: "" + val currentSuffix = property.github.ci.commit.id.let { suffix -> if (suffix.isNotBlank()) "-$suffix" else "" } val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})" if (output is com.android.build.api.variant.impl.VariantOutputImpl) output.outputFileName.set("${property.project.name}-module-v$currentVersion-$currentType.apk")