-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
30 lines (27 loc) · 1.08 KB
/
build.gradle.kts
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
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.GRADLE}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}")
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.HILT}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.NAVIGATION_SAFE_ARGS}")
classpath("com.google.gms:google-services:${Versions.GOOGLE_SERVIER}")
classpath("com.google.firebase:firebase-crashlytics-gradle:${Versions.GOOGLE_CRASHLYTICS}")
classpath("com.google.android.gms:oss-licenses-plugin:${Versions.LICENSES}")
}
}
allprojects {
repositories {
google()
jcenter()
maven { url = uri("https://devrepo.kakao.com/nexus/content/groups/public/") }
maven { url = uri("https://jitpack.io") }
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}