forked from recloudstream/cloudstream
26 lines
697 B
Text
26 lines
697 B
Text
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath("com.android.tools.build:gradle:7.3.1")
|
||
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
|
||
|
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)
|
||
|
}
|