-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
63 lines (54 loc) · 1.72 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// kotlin
kotlin_version = "1.6.10"
coroutines_version = "1.5.1"
// core
activity_version = "1.4.0"
appcompat_version = "1.4.0"
constraint_version = "2.1.0"
corektx_version = "1.7.0"
fragment_version = "1.4.0"
lifecycle_version = "2.4.0"
multidex_version = "2.0.1"
material_version = "1.4.0"
hilt_version = "2.40"
gson_version = "2.8.7"
okhttp_version = "4.9.1"
retrofit_version = "2.9.0"
timber_version = "4.7.1"
coil_version = "1.2.2"
qmui_version = "2.0.1"
util_version = "1.30.6"
toast_version = "9.6"
xpopup_version = "2.6.7"
bindingadapter_version = "4.0.0"
// app
nav_version = "2.3.5"
browser_version = "1.3.0"
brvah_version = '3.0.4'
stateview_version = "v3.0.0"
desugar_version = "1.1.5"
livebus_version = "1.8.0"
// testing
junit_version = "4.13.2"
robolectric_version = "4.6.1"
androidjunit_version = "1.1.2"
espresso_version = "3.3.0"
}
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"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}