-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (25 loc) · 936 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (25 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
buildscript {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.gradle}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("com.google.gms:google-services:${Versions.googleServices}")
classpath("com.google.firebase:firebase-crashlytics-gradle:${Versions.crashlytics}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.navigation}")
classpath ("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:${Versions.secretPlugin}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
tasks.register(name = "type", type = Delete::class) {
delete(rootProject.buildDir)
}