2020-01-04 19:31:52 +00:00
|
|
|
buildscript {
|
2024-05-05 01:44:50 +00:00
|
|
|
ext.kotlin_version = '1.8.21'
|
2020-01-04 19:31:52 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-13 11:15:47 +00:00
|
|
|
mavenCentral()
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-17 22:15:15 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
2021-06-04 15:25:17 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.8'
|
2022-10-14 15:23:24 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-13 11:15:47 +00:00
|
|
|
mavenCentral()
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
|
|
}
|
|
|
|
subprojects {
|
|
|
|
project.evaluationDependsOn(':app')
|
|
|
|
}
|
|
|
|
|
2023-08-18 15:37:17 +00:00
|
|
|
tasks.register("clean", Delete) {
|
2020-01-04 19:31:52 +00:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|