add rootfs

This commit is contained in:
ACh Sulfate
2022-01-29 20:55:15 +08:00
parent d3cabbf2b8
commit c5d877dccf
112 changed files with 17628 additions and 0 deletions

20
build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
extra["kotlin_version"] = Version.kotlin
repositories {
google()
mavenCentral()
}
dependencies {
//noinspection AndroidGradlePluginVersion,GradleDependency
classpath("com.android.tools.build:gradle:7.0.4")
classpath(kotlin("gradle-plugin", version = Version.kotlin))
classpath("org.jetbrains.compose:compose-gradle-plugin:1.0.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module settings.gradle.kts files
}
}
tasks.register<Delete>("clean").configure {
delete(rootProject.buildDir)
}