-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
31 lines (28 loc) · 1.21 KB
/
dependencies.gradle
File metadata and controls
31 lines (28 loc) · 1.21 KB
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
ext {
//Version
supportLibraryVersion = '27.0.2'
constraintVersion = '1.0.2'
jUnitVersion = '4.12'
testRunnerVersion = '1.0.1'
espressoCoreVersion = '3.0.1'
okhttpVersion = '3.9.1'
rxAndroidVersion = '2.0.1'
rxJavaVersion = '2.1.7'
androidasyncVersion = '2.2.1'
//Support Libraries dependencies
supportDependencies = [
appCompat : "com.android.support:appcompat-v7:${supportLibraryVersion}",
constraintLayout: "com.android.support.constraint:constraint-layout:${constraintVersion}",
jUnit : "junit:junit:${jUnitVersion}",
testRunner : "com.android.support.test:runner:${testRunnerVersion}",
espressoCore : "com.android.support.test.espresso:espresso-core:${espressoCoreVersion}"
]
gsonVersion = '2.8.2'
libraries = [
gson : "com.google.code.gson:gson:${gsonVersion}",
okhttp : "com.squareup.okhttp3:okhttp:${okhttpVersion}",
rxandroid: "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}",
rxjava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
androidasync:"com.koushikdutta.async:androidasync:${androidasyncVersion}"
]
}