first version

This commit is contained in:
Chara White
2023-01-20 02:21:20 +08:00
commit 8c4ca6f206
21 changed files with 1166 additions and 0 deletions

9
build.gradle.kts Normal file
View File

@@ -0,0 +1,9 @@
plugins {
id("com.android.application") version "7.1.2" apply false
id("com.android.library") version "7.1.2" apply false
id("org.jetbrains.kotlin.android") version "1.6.21" apply false
}
tasks.register<Delete>("clean").configure {
delete(rootProject.buildDir)
}