-
Notifications
You must be signed in to change notification settings - Fork 15
/
settings.gradle.kts
36 lines (35 loc) · 925 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.4"
id("com.highcapable.sweetproperty") version "1.0.5"
}
sweetProperty {
project(":app") {
sourcesCode {
isEnable = false
}
buildScript {
extensionName = "property"
propertiesFileNames(
"local.properties",
isAddDefault = true
)
permanentKeyValues(
"KEYSTORE_PATH" to "",
"KEYSTORE_PASS" to "",
"KEY_ALIAS" to "",
"KEY_PASSWORD" to ""
)
generateFrom(SYSTEM_ENV, ROOT_PROJECT, CURRENT_PROJECT)
}
}
}
rootProject.name = "RestoreSplashScreen"
include(":app", ":blockmiui")