mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-01 16:55:18 +08:00
- bump "com.highcapable.sweetdependency" version to 1.0.2 - bump "com.highcapable.sweetproperty" version to 1.0.3
29 lines
766 B
Plaintext
29 lines
766 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.highcapable.sweetdependency") version "1.0.2"
|
|
id("com.highcapable.sweetproperty") version "1.0.3"
|
|
}
|
|
sweetProperty {
|
|
global {
|
|
all {
|
|
permanentKeyValues(
|
|
"GITHUB_CI_COMMIT_ID" to "",
|
|
"APP_CENTER_SECRET" to ""
|
|
)
|
|
generateFrom(ROOT_PROJECT, SYSTEM_ENV)
|
|
}
|
|
sourcesCode {
|
|
propertiesFileNames(".secret/secret.properties")
|
|
includeKeys("GITHUB_CI_COMMIT_ID", "APP_CENTER_SECRET")
|
|
}
|
|
}
|
|
rootProject { all { isEnable = false } }
|
|
}
|
|
rootProject.name = "AppErrorsTracking"
|
|
include(":module-app", ":demo-app") |