1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-01 00:16:46 +01:00

32 lines
582 B
Groovy
Raw Normal View History

2018-04-18 20:38:28 +08:00
buildscript {
2020-01-28 13:20:46 +08:00
ext.kotlin_version = '1.3.50'
2018-04-18 20:38:28 +08:00
repositories {
google()
jcenter()
}
dependencies {
2020-01-28 13:20:46 +08:00
classpath 'com.android.tools.build:gradle:3.5.0'
2019-09-23 20:59:34 +08:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2018-04-18 20:38:28 +08:00
}
}
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
}