19 lines
612 B
Text
19 lines
612 B
Text
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
val kotlinVersion by extra<String>("1.5.0")
|
||
|
dependencies {
|
||
|
classpath("com.android.tools.build:gradle:7.0.0-alpha15")
|
||
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
||
|
|
||
|
// NOTE: Do not place your application dependencies here; they belong
|
||
|
// in the individual module build.gradle.kts files
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.register("clean", Delete::class) {
|
||
|
delete(rootProject.buildDir)
|
||
|
}
|