1
Fork 0
solar-conflux/dart/freeform-gradient/android/build.gradle
Bastien Rivière b63659ae80
dart(freeform-gradient): Initial commit
Signed-off-by: prescientmoon <git@moonythm.dev>
2020-01-09 10:52:31 +01:00

32 lines
582 B
Groovy

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