1
0
mirror of https://github.com/apognu/otter synced 2025-02-13 17:40:34 +01:00
Otter-App-Android-Funkwhale/build.gradle.kts
2019-10-30 14:47:04 +01:00

26 lines
389 B
Plaintext

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.5.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50")
}
}
allprojects {
repositories {
google()
maven(url = "https://jitpack.io")
jcenter()
}
}
tasks {
val clean by registering(Delete::class) {
delete(buildDir)
}
}