Initial commit

This commit is contained in:
2024-01-17 11:29:40 +08:00
commit 1f33887a95
41 changed files with 1280 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")