-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (27 loc) · 973 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
26
27
28
29
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
lifecycle_version = "2.6.0-alpha01"
coroutine_version = "1.6.1"
retrofit_version = "2.9.0"
okhttp_version = "4.4.0"
naver_maps_version = "3.15.0"
google_play_version = "20.0.0"
nav_version = "2.5.1"
hilt_version = "2.43.2"
dataStore_version = "1.0.0"
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'com.google.gms:google-services:4.3.13' // Google Services plugin
}
}
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'com.google.dagger.hilt.android' version '2.43.2' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}