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

32 lines
547 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'
2021-04-15 11:34:49 +00:00
// Firebase
classpath 'com.google.gms:google-services:4.3.5'
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
}