Initial commit

This commit is contained in:
2023-10-31 08:05:17 +08:00
commit 08b11ca10a
63 changed files with 1841 additions and 0 deletions

17
settings.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.highcapable.sweetdependency") version "1.0.2"
id("com.highcapable.sweetproperty") version "1.0.3"
}
sweetProperty {
rootProject { all { isEnable = false } }
}
rootProject.name = "__PROJECT_NAME__"
include(":androidApp", ":desktopApp", ":shared")