1 /* 2 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 // Top-level build file where you can add configuration options common to all sub-projects/modules. 6 <lambda>null7buildscript { 8 repositories { 9 google() 10 jcenter() 11 } 12 dependencies { 13 classpath("com.android.tools.build:gradle:3.5.0") 14 classpath(kotlin("gradle-plugin", property("kotlin_version") as String)) 15 16 // NOTE: Do not place your application dependencies here; they belong 17 // in the individual module build.gradle files 18 } 19 } 20 <lambda>null21allprojects { 22 repositories { 23 google() 24 jcenter() 25 } 26 } 27 <lambda>null28task<Delete>("clean") { 29 delete(rootProject.buildDir) 30 } 31