Initial commit

This commit is contained in:
2023-11-04 06:00:14 +08:00
commit 0be33dae37
43 changed files with 1127 additions and 0 deletions

16
settings.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "__SWEET_DEPENDENCY_VERSION__"
id("com.highcapable.sweetproperty") version "__SWEET_PROPERTY_VERSION__"
}
sweetProperty {
rootProject { all { isEnable = false } }
}
rootProject.name = "__PROJECT_NAME__"
include(":app")