mirror of
https://github.com/jellyfin/jellyfin-android.git
synced 2026-09-03 05:10:27 +03:00
29 lines
653 B
Kotlin
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)
|
|
} |