generated from IN-SOPT-ANDROID/in-sopt-android-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
25 lines (23 loc) · 920 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
hilt_version = '2.42'
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.0"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
// key 감추기
id "com.google.android.libraries.mapsplatform.secrets-gradle-plugin" version '2.0.1' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.5.0' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10' apply false
id "org.jetbrains.kotlin.jvm" version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}