Pixelcat-App-Android/build.gradle.kts

27 lines
592 B
Plaintext
Raw Permalink Normal View History

2020-06-12 15:44:45 +02:00
buildscript {
repositories {
google()
jcenter()
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.0")
classpath(kotlin("gradle-plugin", version = "1.6.10"))
classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.1")
2020-06-12 15:44:45 +02:00
}
}
allprojects {
repositories {
google()
mavenCentral()
2020-06-12 15:44:45 +02:00
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)
}