-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
25 lines (23 loc) · 914 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(kotlin("gradle-plugin", version = "1.9.10"))
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.4")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.48")
}
}
plugins {
kotlin("android") version "1.9.10" apply false
kotlin("plugin.serialization") version "1.9.10" apply false
id("com.android.application") version "8.1.2" apply false
id("com.android.library") version "8.1.2" apply false
id("com.android.dynamic-feature") version "8.1.2" apply false
id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin") version "2.0.1" apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}