You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
557 B

buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jlleitschuh.gradle.ktlint' version '8.1.0'
}
allprojects {
repositories {
google()
jcenter()
}
}
subprojects {
apply plugin: 'org.jlleitschuh.gradle.ktlint'
ktlint {
debug = false
verbose = false
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}