2022-10-26 19:56:31 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-11-18 14:31:27 +00:00
|
|
|
classpath("com.android.tools.build:gradle:8.1.4")
|
2023-12-07 20:42:32 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
|
2023-11-11 16:30:36 +00:00
|
|
|
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.10")
|
2022-10-26 19:56:31 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle.kts files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-10 16:02:51 +00:00
|
|
|
plugins {
|
2023-12-07 20:44:12 +00:00
|
|
|
id("com.google.devtools.ksp") version "1.9.21-1.0.15" apply false
|
2023-11-10 16:02:51 +00:00
|
|
|
}
|
|
|
|
|
2023-11-15 16:31:02 +00:00
|
|
|
tasks.register<Delete>("clean") {
|
|
|
|
delete(rootProject.layout.buildDirectory)
|
2023-12-07 20:42:32 +00:00
|
|
|
}
|