generated from IN-SOPT-ANDROID/in-sopt-android-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
27 lines (25 loc) · 881 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
activity_ktx_version = '1.6.0'
fragment_ktx_version = '1.5.3'
lifecycle_version = '2.5.1'
glide_version = '4.12.0'
retrofit_version = '2.9.0'
gson_version = '2.9.1'
okhttp_version = '4.10.0'
kotlinx_serialization_version = '1.4.1'
kotlinx_serialization_converter_version = '0.8.0'
lottie_version = '5.2.0'
coil_version = '2.2.2'
hilt_version = '2.44'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}