-
Notifications
You must be signed in to change notification settings - Fork 87
/
dependencies.gradle
73 lines (62 loc) · 3.44 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
71
72
73
ext {
supportLibrary = '25.0.0'
espressoVersion = "2.2.2"
testRunnerVersion = "0.5"
junitVersion = "4.12"
mockitoVersion = "1.10.19"
hamcrestVersion = "1.3"
playServicesVersion = "9.6.0"
gsonVersion = "2.7"
okhttpVersion = "3.4.1"
daggerVersion = "1.2.5"
circleImageViewVersion = "2.1.0"
materialDialogsVersion = "0.9.0.1"
universalimageloaderVersion = "1.9.5"
facebookSdkVersion = "4.16.1"
retrofitVersion = "2.1.0"
rxPermissionVersion = "0.8.0"
rxbindingVersion = "0.4.0"
rxAndroidVersion = "1.2.1"
multidexVersion = "1.0.1"
supportDependencies = [
design : "com.android.support:design:${supportLibrary}",
cardview : "com.android.support:cardview-v7:${supportLibrary}",
recyclerview : "com.android.support:recyclerview-v7:${supportLibrary}",
appcompat : "com.android.support:appcompat-v7:${supportLibrary}",
supportannotations: "com.android.support:support-annotations:${supportLibrary}",
preferences : "com.android.support:preference-v7:${supportLibrary}",
multidex : "com.android.support:multidex:${multidexVersion}"
]
playServicesDependencies = [
ads : "com.google.firebase:firebase-ads:${playServicesVersion}",
location: "com.google.android.gms:play-services-location:${playServicesVersion}",
maps : "com.google.android.gms:play-services-maps:${playServicesVersion}",
auth : "com.google.android.gms:play-services-auth:${playServicesVersion}"
]
testDependencies = [
espressoCore : "com.android.support.test.espresso:espresso-core:$espressoVersion",
espressoContrib: "com.android.support.test.espresso:espresso-contrib:$espressoVersion",
testRunner : "com.android.support.test:runner:${testRunnerVersion}",
junit : "junit:junit:${junitVersion}",
mockito : "org.mockito:mockito-core:${mockitoVersion}",
hamcrest : "org.hamcrest:hamcrest-library:${hamcrestVersion}"
]
rx = [
rxPermission : "com.tbruyelle.rxpermissions:rxpermissions:${rxPermissionVersion}@aar",
rxbinding : "com.jakewharton.rxbinding:rxbinding:${rxbindingVersion}",
rxAndroid : "io.reactivex:rxandroid:${rxAndroidVersion}",
retrofitRxJava: "com.squareup.retrofit2:adapter-rxjava:${retrofitVersion}"
]
otherDependencies = [
gson : "com.google.code.gson:gson:${gsonVersion}",
okhttp : "com.squareup.okhttp3:okhttp:${okhttpVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitGsonConverter: "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
daggerCompiler : "com.squareup.dagger:dagger-compiler:${daggerVersion}",
dagger : "com.squareup.dagger:dagger:${daggerVersion}",
circleImageView : "de.hdodenhof:circleimageview:${circleImageViewVersion}",
materialDialogs : "com.github.afollestad.material-dialogs:core:${materialDialogsVersion}@aar",
universalImageLoader : "com.nostra13.universalimageloader:universal-image-loader:${universalimageloaderVersion}",
facebookSdk : "com.facebook.android:facebook-android-sdk:${facebookSdkVersion}",
]
}