1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43: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 {
2021-02-07 16:53:53 +00:00
classpath 'com.android.tools.build:gradle:3.5.4'
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
}