VancedManager/build.gradle.kts

33 lines
970 B
Plaintext
Raw Normal View History

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 {
2021-04-13 10:45:38 +00:00
val kotlinVersion by extra("1.4.32")
2021-01-10 10:11:04 +00:00
repositories {
google()
jcenter()
}
dependencies {
2021-04-13 10:45:38 +00:00
classpath("com.android.tools.build:gradle:4.1.3")
2021-02-28 13:29:10 +00:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
2021-02-04 16:10:35 +00:00
classpath("com.google.gms:google-services:4.3.5")
2021-04-13 10:45:38 +00:00
classpath("com.google.firebase:perf-plugin:1.3.5")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.5.2")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5")
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)
}