1
0
mirror of https://github.com/stonega/tsacdop synced 2025-01-27 05:55:00 +01:00
stonegate 64dee98523 Back to saty in background
Playlist UI change
2020-03-22 00:14:10 +08:00

32 lines
582 B
Groovy

buildscript {
ext.kotlin_version = '1.3.70'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
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
}