-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (24 loc) · 1.08 KB
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
id 'org.jetbrains.kotlin.android' version '2.0.0' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.7.7' apply false
id 'com.google.dagger.hilt.android' version '2.51.1' apply false
id 'com.google.gms.google-services' version '4.4.2' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.0' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
id("com.google.devtools.ksp") version "2.0.0-1.0.23" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0"
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
/*
allprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8
}
}
}*/