Files
jellyfin-android/build.gradle.kts
T
2020-07-24 13:01:35 +02:00

29 lines
653 B
Kotlin

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
val kotlinVersion: String by project
classpath("com.android.tools.build:gradle:4.0.1")
classpath(kotlin("gradle-plugin", kotlinVersion))
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.3.2.0")
}
}
allprojects {
repositories {
google()
jcenter()
}
}
tasks.wrapper {
distributionType = Wrapper.DistributionType.ALL
}
tasks.create<Delete>("clean") {
delete(rootProject.buildDir)
}