-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (46 loc) · 1.66 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
gradle_version = '7.0.2'
kotlin_compailer_version= '1.5.30'
core_ktx_version = '1.6.0'
lifecycle_ktx_version = '2.4.0-rc01'
collection_ktx_version = '1.1.0'
hilt_gradle_version = '2.38.1'
hilt_version = '1.0.0'
hilt_compose_navigation_version = '1.0.0-alpha03'
compose_version = '1.0.3'
accompanist_version = '0.16.0'
activity_compose_version = '1.3.1'
retrofit_version = '2.9.0'
retrofit_serialization_converter_version = '0.8.0'
okhttp_version = '4.9.1'
serialization_version = '1.2.2'
room_version = '2.4.0-alpha05'
viewmodel_ktx_version = '2.4.0-alpha03'
coroutine_version = '1.5.1'
coil_version = '1.3.2'
chucker_version = '3.5.2'
mockk_version = '1.11.0'
truth_version = '1.1.3'
truth_ext_version = '1.4.0'
junit_version = '4.13.2'
junit_ext_version = '1.1.3'
espresso_core_version = '3.4.0'
arch_core_test_version = '2.1.0'
mock_web_server_version = '4.9.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_compailer_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_gradle_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_compailer_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}