VancedManager/build.gradle.kts

33 lines
989 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-10-08 10:21:44 +00:00
val kotlinVersion by extra("1.5.30")
2021-01-10 10:11:04 +00:00
repositories {
google()
2021-10-08 12:04:50 +00:00
mavenCentral()
2021-01-10 10:11:04 +00:00
}
dependencies {
2021-10-08 10:21:44 +00:00
classpath("com.android.tools.build:gradle:7.0.2")
2021-02-28 13:29:10 +00:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
2021-10-08 10:21:44 +00:00
classpath("com.google.gms:google-services:4.3.10")
classpath("com.google.firebase:perf-plugin:1.4.0")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.1")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-alpha10")
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()
2021-10-08 12:04:50 +00:00
mavenCentral()
2021-01-10 10:11:04 +00:00
maven(url = "https://jitpack.io")
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}