mirror of
https://github.com/fankes/ColorOSNotifyIcon.git
synced 2025-09-01 08:15:32 +08:00
- using SweetDependency, SweetProperty - merge singing key file configs to properties - update gradle and dependencies
23 lines
571 B
Plaintext
23 lines
571 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.highcapable.sweetdependency") version "1.0.1"
|
|
id("com.highcapable.sweetproperty") version "1.0.2"
|
|
}
|
|
sweetProperty {
|
|
global {
|
|
all {
|
|
permanentKeyValues("GITHUB_CI_COMMIT_ID" to "")
|
|
generateFrom(ROOT_PROJECT, SYSTEM_ENV)
|
|
}
|
|
sourcesCode { includeKeys("GITHUB_CI_COMMIT_ID") }
|
|
}
|
|
rootProject { all { isEnable = false } }
|
|
}
|
|
rootProject.name = "ColorOSNotifyIcon"
|
|
include(":app") |