2024-03-22 22:06:05 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2022-10-26 19:56:31 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2024-03-13 23:12:13 +00:00
|
|
|
|
2022-10-26 19:56:31 +00:00
|
|
|
dependencies {
|
2024-03-22 22:06:05 +00:00
|
|
|
classpath("com.android.tools.build:gradle:8.2.1")
|
2024-01-19 20:09:07 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22")
|
2023-11-11 16:30:36 +00:00
|
|
|
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.10")
|
2024-03-22 22:06:05 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle.kts files
|
2022-10-26 19:56:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-10 16:02:51 +00:00
|
|
|
plugins {
|
2024-01-19 20:09:07 +00:00
|
|
|
id("com.google.devtools.ksp") version "1.9.22-1.0.16" 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
|
|
|
}
|