-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
78 lines (63 loc) · 2 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
68
69
70
71
72
73
74
75
76
77
78
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: "$project.rootDir/config/detekt.gradle"
buildscript {
ext {
// a
appcompat_version = "1.4.0"
// c
core_version = "1.7.0"
constraint_version = "2.1.2"
coroutines_test_version = "1.5.2"
core_testing_version = "2.1.0"
// d
detekt_version = "1.21.0"
// g
google_truth_version = "1.1.3"
glide_version = "4.12.0"
// h
hilt_version = "2.38.1"
// j
json_version = "20180813"
jacoco_version = "0.8.7"
// k
klaxon_version = "5.5"
kconnection_version = "1.0.4"
// l
lifecycle_version = "2.4.0"
lifecycle_extension_version = "2.2.0"
// m
material_version = "1.4.0"
mockito_kotlin_version = "4.0.0"
mockito_inline_version = "2.13.0"
mockk_version = "1.12.1"
// o
okhttp_version = "4.9.3"
okhttp_logging_version = "4.9.1"
// r
retrofit_version = "2.9.0"
// s
splash_screen_version = "1.0.0-alpha02"
shimmer_version = "0.5.0"
spinkit_version = "1.4.0"
swipe_refresh_version = "1.1.0"
// t
timber_version = "5.0.1"
}
repositories {
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "org.jacoco:org.jacoco.core:$jacoco_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_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
}