Files
jellyfin-android/build.gradle.kts
T

30 lines
654 B
Kotlin
Raw Normal View History

2020-07-24 12:07:04 +02:00
// 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
2021-02-04 22:13:29 +01:00
classpath("com.android.tools.build:gradle:4.1.2")
2020-07-24 12:07:04 +02:00
classpath(kotlin("gradle-plugin", kotlinVersion))
2020-09-10 22:08:31 +02:00
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.6.2.0")
2020-07-24 12:07:04 +02:00
}
}
allprojects {
repositories {
google()
jcenter()
}
}
tasks.wrapper {
distributionType = Wrapper.DistributionType.ALL
}
tasks.create<Delete>("clean") {
delete(rootProject.buildDir)
2020-09-10 22:08:31 +02:00
}