gkd/build.gradle.kts

19 lines
508 B
Plaintext
Raw Normal View History

2021-11-07 16:50:28 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2022-10-09 10:51:27 +08:00
mavenLocal()
2021-11-07 16:50:28 +08:00
mavenCentral()
2022-10-09 10:51:27 +08:00
google()
2023-04-30 17:50:55 +08:00
maven("https://jitpack.io")
2021-11-07 16:50:28 +08:00
}
dependencies {
2023-04-30 17:50:55 +08:00
classpath(libs.android.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.kotlin.serialization)
classpath(libs.rikka.gradle)
2021-11-07 16:50:28 +08:00
}
}
2021-11-19 14:08:52 +08:00
tasks.register<Delete>("clean").configure {
delete(rootProject.buildDir)
2022-10-09 10:51:27 +08:00
}