2018-09-14 18:59:13 +02:00
|
|
|
buildscript {
|
2024-04-05 14:28:14 +02:00
|
|
|
ext.kotlin_version = '1.9.23'
|
2018-09-14 18:59:13 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2023-01-07 13:40:07 +01:00
|
|
|
mavenCentral()
|
2018-09-14 18:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-07 13:40:07 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.3.14'
|
|
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
2018-09-14 18:59:13 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-01-07 13:40:07 +01:00
|
|
|
mavenCentral()
|
2018-09-14 18:59:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
|
|
project.evaluationDependsOn(':app')
|
|
|
|
}
|
|
|
|
|
2023-05-11 00:41:46 +02:00
|
|
|
tasks.register("clean", Delete) {
|
2018-09-14 18:59:13 +02:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|