-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (54 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compile_sdk_version = 31
target_sdk_version = 31
min_sdk_version = 23
// Accompanist compose
accompanist_flowlayout_version = '0.17.0'
// Espresso
espresso_version = '3.4.0'
// Kotlin
kotlin_version = '1.5.31'
coroutines_version = '1.5.2'
// Kotlinx serialization
kotlinx_serialization_version = '1.3.0'
// Compose
compose_version = '1.0.5'
navigation_compose_version = '2.4.0'
// Jetpack
appcompat_version = '1.4.1'
core_version = '1.7.0'
lifecycle_version = '2.4.0'
activity_version = '1.4.0'
material_version = '1.5.0'
// Junit
junit_version = '4.13.2'
junit_ext_version = '1.1.3'
// Hilt
hilt_version = '2.40.2'
hilt_lifecycle_version = '1.0.0'
// Paging 3.0
paging3_version = '1.0.0-alpha14'
//Retrofit
retrofit_version = '2.9.0'
retrofit_serialization_version = '0.8.0'
//Room
room_version = '2.4.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}