-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (46 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_compiler = '1.4.3'
compose_version = '1.3.3'
compose_material_icons = '1.3.1'
orbit_version = '4.3.2'
navigation_compose = '2.5.3'
gson = '2.9.0'
lifecycle_ext = '2.2.0'
lifecycle_viewmodel_ext = '2.5.0-rc01'
coroutines_version = '1.6.2'
retrofit_version = '2.9.0'
okhttp_interceptor = '5.0.0-alpha.7'
hilt_version = '2.44'
hilt_navigation_compose_version = "1.0.0"
hilt_compiler_version = "1.0.0"
hilt_work_version = "1.0.0"
work_runtime_version = "2.7.1"
desugar_version = "1.1.5"
accompanist_incets_version = "0.23.1"
accompanist_animation_navigation_version = "0.24.10-beta"
constraint_compose_version = "1.0.1"
paging_version = "3.1.1"
paging_compose_version = "1.0.0-alpha15"
lottieVersion = "5.2.0"
room_version = "2.5.0"
kotlin_version = '1.8.10'
}
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'com.google.dagger.hilt.android' version '2.44' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}