-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
23 lines (21 loc) · 951 Bytes
/
build.gradle.kts
File metadata and controls
23 lines (21 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath(Dependency.Kotlin.KOTLIN_SERIALIZATION_PLUGIN)
classpath(Dependency.Hilt.HILT_PLUGIN)
classpath(Dependency.Google.GOOGLE_SERVICE)
classpath(Dependency.SecretsGradle.SECRETS_GRADLE_CLASSPATH)
classpath(Dependency.Android.OSS_LICENSES_PLUGIN)
}
}
plugins {
id("com.android.application") version "8.0.1" apply false
id("com.android.library") version "8.0.1" apply false
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
id("com.google.gms.google-services") version "4.3.15" apply false
id("com.google.firebase.crashlytics") version "2.9.7" 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)
}