Pixelcat-App-Android/build.gradle.kts

26 lines
568 B
Plaintext
Raw Normal View History

2020-06-12 15:44:45 +02:00
buildscript {
repositories {
google()
jcenter()
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
2020-09-29 20:41:39 +02:00
classpath(kotlin("gradle-plugin", version = "1.4.10"))
classpath("org.jlleitschuh.gradle:ktlint-gradle:9.4.0")
2020-06-12 15:44:45 +02:00
}
}
allprojects {
repositories {
google()
jcenter()
maven(url = "https://jitpack.io")
}
2020-06-12 19:58:15 +02:00
apply(plugin = "org.jlleitschuh.gradle.ktlint")
2020-06-12 15:44:45 +02:00
}
tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
}