-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
27 lines (24 loc) · 909 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
26
27
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.3.1" apply false
id("com.android.library") version "8.3.1" apply false
id("org.jetbrains.kotlin.android") version "1.9.23" apply false
id("com.google.dagger.hilt.android") version "2.51" apply false
kotlin("plugin.serialization") version "1.9.23"
id("com.google.devtools.ksp") version "1.9.23-1.0.19"
}
buildscript {
dependencies {
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
}
repositories {
mavenCentral()
google()
}
}
allprojects {
tasks.withType(type = KotlinCompile::class).configureEach {
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}