We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3745438 commit e7869c4Copy full SHA for e7869c4
1 file changed
app/build.gradle.kts
@@ -51,7 +51,7 @@ androidComponents {
51
it.outputs.forEach { output ->
52
val currentType = it.buildType
53
val currentSuffix = gropify.github.ci.commit.id.let { suffix ->
54
- if (suffix.isNotBlank()) "-$suffix" else ""
+ if (!suffix.isBlank()) "-$suffix" else ""
55
}
56
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"
57
if (output is com.android.build.api.variant.impl.VariantOutputImpl)
@@ -78,4 +78,4 @@ dependencies {
78
testImplementation(libs.junit)
79
androidTestImplementation(libs.androidx.test.ext.junit)
80
androidTestImplementation(libs.androidx.test.espresso.core)
81
-}
+}
0 commit comments