-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (41 loc) · 1.32 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath('com.google.dagger:hilt-android-gradle-plugin:2.44')
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.8.2.1")
}
}
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// Definition of libraries versions
ext {
room_version = "2.4.3"
hilt_version = '2.44'
kotlin_core_version = "1.9.0"
appcompat_version = "1.5.1"
material_version = "1.6.1"
constraintlayout_version = "2.1.4"
junit_version = '4.13.2'
junit5_version = '5.9.1'
junit_ext_version = "1.1.3"
espresso_version = "3.5.0"
espresso_contrib_version = "3.3.0"
coroutines_version = "1.6.4"
retrofit_version = "2.9.0"
gson_version = "2.10"
wiremock_version = "2.18.0"
lifecycle_version = "2.5.1"
test_liveData_version = "2.1.0"
fragment_ktx_version = '1.5.3'
mockito_version = "4.8.0"
mockito_kotlin_version = '4.0.0'
fragment_test_version = "1.5.3"
httpclient_version = "4.3.5.1"
loging_interceptor_version = "5.0.0-alpha.2"
}