-
Notifications
You must be signed in to change notification settings - Fork 15
/
dependencies.gradle
70 lines (59 loc) · 2.74 KB
/
dependencies.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
ext {
appCompatVersion = '1.3.1'
recyclerViewVersion = '1.2.1'
materialVersion = '1.5.0-alpha02'
supportLibrary = [
appCompat : "androidx.appcompat:appcompat:$appCompatVersion",
recyclerView: "androidx.recyclerview:recyclerview:$recyclerViewVersion",
material : "com.google.android.material:material:$materialVersion"
]
butterKnifeVersion = '10.1.0'
gsonVersion = '2.8.8'
picassoVersion = '2.71828'
rippleVersion = '1.0.2'
progressBarVersion = '1.4.0'
ui = [
picasso : "com.squareup.picasso:picasso:${picassoVersion}",
ripple : "com.balysv:material-ripple:${rippleVersion}",
progressBar : "me.zhanghai.android.materialprogressbar:library:${progressBarVersion}"
]
serialization = [
gson: "com.google.code.gson:gson:${gsonVersion}"
]
coroutineCoreVersion = '1.3.2'
coroutineAndroidVersion = '1.3.0'
coroutine = [
core : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineCoreVersion",
android: "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutineAndroidVersion"
]
retrofitVersion = '2.9.0'
retrofitConverterVersion = '2.9.0'
okhttpLoggingInterceptorVersion = '4.9.1'
okhttpUrlConnectionVersion = '4.9.1'
okhttpVersion = '4.9.1'
// httpClientVersion = '4.1.2'
network = [
okhttp_logging_interceptor: "com.squareup.okhttp3:logging-interceptor:${okhttpLoggingInterceptorVersion}",
okhttp_urlconnection : "com.squareup.okhttp3:okhttp-urlconnection:${okhttpUrlConnectionVersion}",
okhttp3 : "com.squareup.okhttp3:okhttp:${okhttpVersion}",
retrofit_gson_converter : "com.squareup.retrofit2:converter-gson:${retrofitConverterVersion}",
retrofit2 : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
// apache_http_client : "org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:${httpClientVersion}"
]
junitVersion = '4.12'
mockitoVersion = '2.0.2-beta'
hamcrestVersion = '1.3'
powerMockVersion = '2.0.4'
test = [
junit : "junit:junit:${junitVersion}",
mockito : "org.mockito:mockito-all:${mockitoVersion}",
hamcrest : "org.hamcrest:hamcrest-all:${hamcrestVersion}",
powerMockJUnit : "org.powermock:powermock-module-junit4:${powerMockVersion}",
powerMockMockito: "org.powermock:powermock-api-mockito2:${powerMockVersion}"
]
androidTestRunnerVersion = '0.5'
espressoVersion = '2.2.2'
mockServerVersion = '3.2.0'
daggerVersion = '2.0.2'
glassFishVersion = '10.0-b28'
}