1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/android/build.gradle

30 lines
470 B
Groovy
Raw Normal View History

2019-04-21 08:34:27 +00:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-03-24 13:37:00 +00:00
classpath 'com.android.tools.build:gradle:3.5.0'
2019-04-21 08:34:27 +00: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
}