Skip to content

Commit a489564

Browse files
committed
chore: bump dependencies
1 parent c0b5fb2 commit a489564

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

demo-app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ androidComponents {
5555
onVariants(selector().all()) {
5656
it.outputs.forEach { output ->
5757
val currentType = it.buildType
58-
val currentSuffix = gropify.github.ci.commit.id.let { suffix ->
58+
59+
// Workaround for GitHub Actions.
60+
// Strongly transfer type to [String].
61+
@Suppress("UNNECESSARY_SAFE_CALL")
62+
val currentSuffix = gropify.github.ci.commit.id?.let { suffix ->
5963
if (suffix.isNotBlank()) "-$suffix" else ""
6064
}
6165
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
2-
agp = "8.13.1"
2+
agp = "8.13.2"
33
kotlin = "2.2.21"
44
ksp = "2.2.21-2.0.4"
55
flexi-locale = "1.0.2"
66
project-promote = "1.0.1"
77
rovo89-xposed-api = "82"
88
yukihookapi = "1.3.1"
99
kavaref-core = "1.0.2"
10-
kavaref-extension = "1.0.1"
10+
kavaref-extension = "1.0.2"
1111
microsoft-appcenter = "5.0.6"
1212
libsu = "5.2.2"
1313
drawabletoolbox = "1.0.7"
1414
gson = "2.13.2"
15-
okhttp = "5.3.0"
15+
okhttp = "5.3.2"
1616
androidx-core-ktx = "1.17.0"
1717
androidx-appcompat = "1.7.1"
1818
material = "1.13.0"

module-app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ androidComponents {
5151
onVariants(selector().all()) {
5252
it.outputs.forEach { output ->
5353
val currentType = it.buildType
54-
val currentSuffix = gropify.github.ci.commit.id.let { suffix ->
54+
55+
// Workaround for GitHub Actions.
56+
// Strongly transfer type to [String].
57+
@Suppress("UNNECESSARY_SAFE_CALL")
58+
val currentSuffix = gropify.github.ci.commit.id?.let { suffix ->
5559
if (suffix.isNotBlank()) "-$suffix" else ""
5660
}
5761
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"

0 commit comments

Comments
 (0)