chore: bump dependencies

This commit is contained in:
2025-12-14 00:02:55 +08:00
parent 2d470a17bc
commit 646400ccb2
3 changed files with 13 additions and 5 deletions

View File

@@ -51,7 +51,11 @@ androidComponents {
onVariants(selector().all()) {
it.outputs.forEach { output ->
val currentType = it.buildType
val currentSuffix = gropify.github.ci.commit.id.let { suffix ->
// Workaround for GitHub Actions.
// Strongly transfer type to [String].
@Suppress("UNNECESSARY_SAFE_CALL")
val currentSuffix = gropify.github.ci.commit.id?.let { suffix ->
if (suffix.isNotBlank()) "-$suffix" else ""
}
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"