-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
24 lines (22 loc) · 852 Bytes
/
build.gradle.kts
File metadata and controls
24 lines (22 loc) · 852 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath("com.google.dagger:hilt-android-gradle-plugin:2.48.1")
}
repositories {
google()
mavenCentral()
maven("https://devrepo.kakao.com/nexus/content/groups/public/")
}
}
plugins {
id("com.android.application") version "8.1.3" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("org.jlleitschuh.gradle.ktlint") version "11.0.0" apply false
id("androidx.navigation.safeargs.kotlin") version "2.5.1" apply false
id("com.google.firebase.crashlytics") version "2.9.9" apply false
id("com.google.gms.google-services") version "4.4.1" apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}