-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (36 loc) · 1.28 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
28
29
30
31
32
33
34
35
36
37
buildscript {
ext {
compose_version = '1.1.1'
kotlin_version = '1.6.10'
lifecycle_version = '2.4.1'
activity_compose_version = '1.4.0'
appcompat_version = '1.4.1'
accompanist_version = '0.24.8-beta'
room_version = '2.4.2'
retrofit_version = '2.9.0'
logging_interceptor_version = '5.0.0-alpha.7'
ktx_ser_converter_version = '0.8.0'
paging_version = '1.0.0-alpha14'
data_store_version = '1.0.0'
hilt_version = '2.42'
nav_version = '2.4.2'
hilt_nav_version = '1.0.0'
ktx_serialization_version = '1.3.3'
coil_version = '2.0.0'
palette_version = '1.0.0'
kotlin_test_version = '1.6.21'
corouteine_test_version = '1.6.1'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10'
}
task clean(type: Delete) {
delete rootProject.buildDir
}