2025-07-30 22:38:44 +07:00
|
|
|
buildscript {
|
|
|
|
|
ext.kotlin_version = '2.0.0'
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2025-09-18 21:22:40 +07:00
|
|
|
classpath 'com.google.gms:google-services:4.4.3'
|
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
|
2025-07-30 22:38:44 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
|
subprojects {
|
|
|
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
|
|
|
}
|
|
|
|
|
subprojects {
|
|
|
|
|
project.evaluationDependsOn(':app')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register("clean", Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|