mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
04285b6ba2
This reverts commit faeb71da2c
.
31 lines
789 B
Text
31 lines
789 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:8.2.1")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22")
|
|
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.10")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle.kts files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.google.devtools.ksp") version "1.9.22-1.0.16" apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.layout.buildDirectory)
|
|
}
|