Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

33 lines
768 B
Kotlin

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.kotlin.serialization)
classpath(libs.androidx.navigation.safeargs)
// NOTE: Do not place your application dependencies here, they belong
// in the individual module build.gradle.kts files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
plugins {
id("com.google.devtools.ksp") version("1.9.22-1.0.16") apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}