1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/android/build.gradle

32 lines
547 B
Groovy
Raw Normal View History

2019-04-21 10:34:27 +02:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2021-02-07 17:53:53 +01:00
classpath 'com.android.tools.build:gradle:3.5.4'
2021-04-15 13:34:49 +02:00
// Firebase
classpath 'com.google.gms:google-services:4.3.5'
2019-04-21 10:34:27 +02: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
}