-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibraries.gradle
executable file
·75 lines (67 loc) · 3.64 KB
/
libraries.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
ext {
minSdkVersion = 19
compileSdkVersion = 25
buildToolsVersion = "25.0.1"
//Android
androidSupportVersion = "25.1.0"
butterknifeVersion = "8.4.0"
rxandroidVersion = "1.2.1"
okhttpVersion = "3.4.1"
retrofitVersion = "2.1.0"
utilsVersion = "1.0.7"
timberVersion = "4.3.1"
picassoVersion = "2.5.2"
daggerVersion = "2.8"
rxbindingVersion = "1.0.0"
googlemap="10.2.0"
annotation="25.1.1"
//Java
rxjavaVersion = "1.2.3"
//Testing
junitVersion = "4.12"
dexmakerVersion = "1.2"
mockitoVersion = "1.10.19"
supportTestVesion = "0.5"
robolectricVersion = "3.1.1"
espressoVersion = "2.2.2"
libraries = [
androidSupport : "com.android.support:support-v4:${androidSupportVersion}",
appCompat : "com.android.support:appcompat-v7:${androidSupportVersion}",
designSupport : "com.android.support:design:${androidSupportVersion}",
vectorSupport : "com.android.support:support-vector-drawable:${androidSupportVersion}",
cardView : "com.android.support:cardview-v7:${androidSupportVersion}",
recyclerView : "com.android.support:recyclerview-v7:${androidSupportVersion}",
palette : "com.android.support:palette-v7:${androidSupportVersion}",
rxjava : "io.reactivex:rxjava:${rxjavaVersion}",
rxandroid : "io.reactivex:rxandroid:${rxandroidVersion}",
utils : "com.mirhoseini.utils:utils:${utilsVersion}",
timber : "com.jakewharton.timber:timber:${timberVersion}",
butterknife : "com.jakewharton:butterknife:${butterknifeVersion}",
okhttp : "com.squareup.okhttp3:okhttp:${okhttpVersion}",
okhttpLogging : "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitConverter: "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
retrofitAdapter : "com.squareup.retrofit2:adapter-rxjava:${retrofitVersion}",
picasso : "com.squareup.picasso:picasso:${picassoVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
rxbinding : "com.jakewharton.rxbinding:rxbinding:${rxbindingVersion}",
googlemap : "com.google.android.gms:play-services-maps:${googlemap}",
annotation : "com.android.support:support-annotations:${annotation}",
]
aptLibraries = [
butterknifeCompiler: "com.jakewharton:butterknife-compiler:${butterknifeVersion}",
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}",
]
testLibraries = [
junit : "junit:junit:${junitVersion}",
mockito : "org.mockito:mockito-core:${mockitoVersion}",
robolectric : "org.robolectric:robolectric:${robolectricVersion}",
dexmaker : "com.google.dexmaker:dexmaker:${dexmakerVersion}",
dexmakerMockito : "com.google.dexmaker:dexmaker-mockito:${dexmakerVersion}",
supportAnnotations: "com.android.support:support-annotations:${androidSupportVersion}",
supportTestRunner : "com.android.support.test:runner:${supportTestVesion}",
supportTestRules : "com.android.support.test:rules:${supportTestVesion}",
espresso : "com.android.support.test.espresso:espresso-core:${espressoVersion}",
espressoContrib : "com.android.support.test.espresso:espresso-contrib:${espressoVersion}",
]
}