-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (28 loc) · 985 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (28 loc) · 985 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 {
val kotlinVersion by extra("1.5.0")
repositories {
google()
mavenCentral()
//maven { url = uri("https://jitpack.io") }
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
//classpath("com.google.gms:google-services:4.3.8")
classpath("android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5")
// Add the Crashlytics Gradle plugin (be sure to add version
// 2.0.0 or later if you built your app with Android Studio 4.1).
classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.1")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
tasks.register("clean",Delete::class){
delete(rootProject.buildDir)
}