blob: 44f45cd3a8033ad87a9049daaecea733bceebd7b [file] [log] [blame]
buildscript {
// Do not copy this. It's strictly because this application does not care
// about Kotlin version and wants to always do its best to work.
ext.kotlin_version = '+'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}