chore: bump dependencies

This commit is contained in:
2025-11-16 01:55:00 +08:00
parent bb60f87ab3
commit f32fa2fdfc

View File

@@ -16,7 +16,7 @@ dependencyResolutionManagement {
} }
} }
plugins { plugins {
id("com.highcapable.gropify") version "1.0.0" id("com.highcapable.gropify") version "1.0.1"
} }
gropify { gropify {
global { global {
@@ -26,8 +26,8 @@ gropify {
"APP_CENTER_SECRET" to "" "APP_CENTER_SECRET" to ""
) )
includeKeys( includeKeys(
"GITHUB_CI_COMMIT_ID" to "", "GITHUB_CI_COMMIT_ID",
"APP_CENTER_SECRET" to "", "APP_CENTER_SECRET",
"^project\\..*\$".toRegex() "^project\\..*\$".toRegex()
) )
locations(GropifyLocation.RootProject, GropifyLocation.SystemEnv) locations(GropifyLocation.RootProject, GropifyLocation.SystemEnv)
@@ -35,8 +35,8 @@ gropify {
android { android {
existsPropertyFiles(".secret/secret.properties") existsPropertyFiles(".secret/secret.properties")
includeKeys("GITHUB_CI_COMMIT_ID", "APP_CENTER_SECRET") includeKeys("GITHUB_CI_COMMIT_ID", "APP_CENTER_SECRET")
// 关闭类型自动转换功能,防止一些特殊 "COMMIT ID" 被生成为数值 // 手动指定类型,防止一些特殊 "COMMIT ID" 被生成为数值
useTypeAutoConversion = false keyValuesRules("GITHUB_CI_COMMIT_ID" to ValueRule(String::class))
} }
} }
rootProject { common { isEnabled = false } } rootProject { common { isEnabled = false } }