2021-01-10 10:11:04 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-01-22 16:15:47 +00:00
|
|
|
classpath("com.android.tools.build:gradle:4.1.2")
|
2021-02-13 11:03:47 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30")
|
2021-02-04 16:10:35 +00:00
|
|
|
classpath("com.google.gms:google-services:4.3.5")
|
2021-01-10 10:11:04 +00:00
|
|
|
classpath("com.google.firebase:perf-plugin:1.3.4")
|
2021-02-13 11:03:47 +00:00
|
|
|
classpath("com.google.firebase:firebase-crashlytics-gradle:2.5.0")
|
2021-02-04 16:10:35 +00:00
|
|
|
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.3")
|
2021-01-10 10:11:04 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle.kts files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven(url = "https://jitpack.io")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task<Delete>("clean") {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|