add rootfs
This commit is contained in:
20
build.gradle.kts
Normal file
20
build.gradle.kts
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user