Initial commit

This commit is contained in:
vfsfitvnm
2022-06-02 18:59:18 +02:00
commit 1e673ad582
160 changed files with 10800 additions and 0 deletions

16
build.gradle.kts Normal file
View File

@@ -0,0 +1,16 @@
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build", "gradle", "7.2.0")
classpath(kotlin("gradle-plugin", "1.6.21"))
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}