-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle.kts
32 lines (29 loc) · 1.06 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
31
32
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.google.devtools.ksp") version "1.9.10-1.0.13" apply false
}
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.GRADLE}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN_VERSION}")
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.HILT}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.KOTLIN_SERIALIZATION}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.NAVIGATION}")
classpath("com.google.gms:google-services:${Versions.FIREBASE}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
maven(url = "https://jitpack.io")
}
}
val clean by tasks.registering(Delete::class) {
delete(rootProject.buildDir)
}