We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07bcbb7 commit 7af4c87Copy full SHA for 7af4c87
settings.gradle.kts
@@ -16,7 +16,7 @@ dependencyResolutionManagement {
16
}
17
18
plugins {
19
- id("com.highcapable.gropify") version "1.0.0"
+ id("com.highcapable.gropify") version "1.0.1"
20
21
gropify {
22
global {
@@ -30,8 +30,8 @@ gropify {
30
31
android {
32
includeKeys("GITHUB_CI_COMMIT_ID")
33
- // 关闭类型自动转换功能,防止一些特殊 "COMMIT ID" 被生成为数值
34
- useTypeAutoConversion = false
+ // 手动指定类型,防止一些特殊 "COMMIT ID" 被生成为数值
+ keyValuesRules("GITHUB_CI_COMMIT_ID" to ValueRule(String::class))
35
36
37
rootProject { common { isEnabled = false } }
0 commit comments