fluffychat/android/build.gradle
Christian Pauly 23f9be2fd5 feat: Use Firebase Cloud Messaging over UP
This switches to the FOSS implementation
of the google libraries so we have
no more Blobs there.
2022-07-09 10:49:39 +02:00

32 lines
582 B
Groovy

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