migrate main build.gradle, settings.gradle to kotlin.

This commit is contained in:
soloturn 2019-02-09 16:26:02 +01:00 committed by Isaac Hutt
parent 1196dc0e6a
commit 2acf8b4fd6
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.3.0"
classpath("com.android.tools.build:gradle:3.3.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@ -44,6 +44,7 @@ allprojects {
}
}
task clean(type: Delete) {
delete rootProject.buildDir
tasks.create<Delete>("clean") {
delete(rootProject.buildDir)
}