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-08-04 15:20:23 +00:00
|
|
|
// we stay on low ver because prerelease build gradle is fucked
|
|
|
|
classpath("com.android.tools.build:gradle:7.3.1")
|
2023-08-04 03:37:41 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20")
|
2022-10-26 19:56:31 +00:00
|
|
|
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.5.0")
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle.kts files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|