-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
101 lines (73 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext {
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
versionCode = 1
versionName = "1.0.0"
//SupportLib
recyclerViewSupportLibVersion = '1.1.0'
cardSupportLibVersion = '1.0.0'
appcompatSupportLibVersion = '1.1.0'
browserVersion = '1.2.0'
materialVersion = "1.1.0"
work_version = '2.3.4'
//multidex
multiDexVersion = '2.0.1'
//retrofit
retrofitVersion = '2.9.0'
//ConstraintLayout
constraintLayoutVersion = '1.1.3'
//RxJava
rxJavaVersion = "3.0.4"
//RxAndroid
rxAndroid = "3.0.0"
//Dagger 2
dagger2Version = '2.27'
//Okhttp
okhttpVersion = '4.4.0'
//AAC
lifecycle_version = '2.2.0'
lifecycle_extension_version = '2.2.0'
lifecycle_livedata_version = '2.2.0'
lifecycle_rxstreams_version = '2.2.0'
lifecycle_core_testing = '2.1.0'
//Graph
graphVersion = "v3.1.0"
// Mockito
mockitoVersion = "2.28.2"
rulesVersion = '1.1.0-alpha1'
runnerVersion = '1.1.0-alpha1'
hamcrestVersion = '2.2'
espressoVersion = '3.1.0-alpha1'
junitVersion = '4.13'
// Memory leak
leakcanary = '2.3'
leakcanary_no_op = '1.6.3'
leakcanary_fragment_support = '1.6.3'
leakcanary_no_op_testing_on_remote = '1.6.3'
leakcanary_support_testing = '1.6.3'
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://oss.jfrog.org/libs-snapshot" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}