File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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()} )"
Original file line number Diff line number Diff line change 11[versions ]
2- agp = " 8.13.1 "
2+ agp = " 8.13.2 "
33kotlin = " 2.2.21"
44ksp = " 2.2.21-2.0.4"
55flexi-locale = " 1.0.2"
66project-promote = " 1.0.1"
77rovo89-xposed-api = " 82"
88yukihookapi = " 1.3.1"
99kavaref-core = " 1.0.2"
10- kavaref-extension = " 1.0.1 "
10+ kavaref-extension = " 1.0.2 "
1111microsoft-appcenter = " 5.0.6"
1212libsu = " 5.2.2"
1313drawabletoolbox = " 1.0.7"
1414gson = " 2.13.2"
15- okhttp = " 5.3.0 "
15+ okhttp = " 5.3.2 "
1616androidx-core-ktx = " 1.17.0"
1717androidx-appcompat = " 1.7.1"
1818material = " 1.13.0"
Original file line number Diff line number Diff 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()} )"
You can’t perform that action at this time.
0 commit comments