-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
144 lines (123 loc) · 5.86 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
allprojects {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
}
}
ext {
//Android
androidBuildToolsVersion = "23.0.3"
androidMinSdkVersion = 15
androidTargetSdkVersion = 23
androidCompileSdkVersion = 23
//google support
googleSupportVersion = "23.4.0"
//UI
starwarsVersion = '0.1.1'
htextVersion = '0.1.3'
materialEditTextVersion = '2.1.4'
processButtonVersion = '1.0.4'
avloadingVersion = '1.0.5'
smoothProgressBarVersion = '1.1.0'
circleProgressBarVersion = '1.2.0'
roundedImageVersion = '2.2.1'
ultraPtrVersion = '1.0.11'
BRVAHVersion = 'v1.8.5'
//Libraries
daggerVersion = '2.4'
butterKnifeVersion = '8.0.1'
rxJavaVersion = '1.1.5'
rxAndroidVersion = '1.2.0'
javaxAnnotationVersion = '1.0'
gsonVersion = '2.6.2'
okHttpVersion = '3.3.1'
retrofitVersion = '2.0.2'
androidAnnotationsVersion = '21.0.3'
eventBusVersion = '3.0.0'
glideVersion = '3.7.0'
glideTransVersion = '2.0.0'
commonsLang3Version = '3.4'
//font
iconicsCoreVersion = '2.6.6@aar'
fontGMIVersion = '2.2.0.1.original@aar'
fontMDIVersion = '2.2.0.1@aar'
//Development
leakCanaryVersion = '1.3.1'
loggerVersion = '1.15'
//Testing
robolectricVersion = '3.0'
jUnitVersion = '4.12'
assertJVersion = '1.7.1'
mockitoVersion = '1.9.5'
dexmakerVersion = '1.0'
espressoVersion = '2.0'
testingSupportLibVersion = '0.1'
googleSupportDependencies = [
appcompatV7 : "com.android.support:appcompat-v7:${googleSupportVersion}",
design : "com.android.support:design:${googleSupportVersion}",
supportV4 : "com.android.support:support-v4:${googleSupportVersion}",
recyclerview: "com.android.support:recyclerview-v7:${googleSupportVersion}",
cardview : "com.android.support:cardview-v7:${googleSupportVersion}"
]
coreDependencies = [
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
butterKnife : "com.jakewharton:butterknife:${butterKnifeVersion}",
butterKnifeCompiler: "com.jakewharton:butterknife-compiler:${butterKnifeVersion}",
rxJava : "io.reactivex:rxjava:${rxJavaVersion}",
rxAndroid : "io.reactivex:rxandroid:${rxAndroidVersion}",
javaxAnnotation : "javax.annotation:jsr250-api:${javaxAnnotationVersion}",
androidAnnotations: "com.android.support:support-annotations:${androidAnnotationsVersion}",
eventBus : "org.greenrobot:eventbus:${eventBusVersion}",
//net
okHttp : "com.squareup.okhttp3:okhttp:${okHttpVersion}",
okHttpLoggingInterceptor: "com.squareup.okhttp3:logging-interceptor:${okHttpVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitConverterGson : "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
retrofitAdapterRxJava : "com.squareup.retrofit2:adapter-rxjava:${retrofitVersion}",
gson : "com.google.code.gson:gson:${gsonVersion}",
//image
glide : "com.github.bumptech.glide:glide:${glideVersion}",
glideTransform : "jp.wasabeef:glide-transformations:${glideTransVersion}",
//font
iconicsCore : "com.mikepenz:iconics-core:${iconicsCoreVersion}",
fontGMI : "com.mikepenz:google-material-typeface:${fontGMIVersion}",
fontMDI : "com.mikepenz:material-design-iconic-typeface:${fontMDIVersion}",
//tool
]
uiDependencies = [
starwarstiles : "com.yalantis:starwarstiles:${starwarsVersion}",
htext : "hanks.xyz:htextview-library:${htextVersion}",
materialEditText : "com.rengwuxian.materialedittext:library:${materialEditTextVersion}",
avloading : "com.wang.avi:library:${avloadingVersion}",
smoothProgressBar: "com.github.castorflex.smoothprogressbar:library:${smoothProgressBarVersion}",
circleProgressBar: "com.github.castorflex.smoothprogressbar:library-circular:${circleProgressBarVersion}",
processButton : "com.github.dmytrodanylyk.android-process-button:library:${processButtonVersion}",
roundedImageView : "com.makeramen:roundedimageview:${roundedImageVersion}",
ultraPtr : "in.srain.cube:ultra-ptr:${ultraPtrVersion}",
BRVAH : "com.github.CymChad:BaseRecyclerViewAdapterHelper:${BRVAHVersion}"
]
debugDependencies = [
leakCanary: "com.squareup.leakcanary:leakcanary-android:${leakCanaryVersion}",
logger : "com.orhanobut:logger:${loggerVersion}",
]
domainTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
mockito: "org.mockito:mockito-core:${mockitoVersion}",
]
dataTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
mockito : "org.mockito:mockito-core:${mockitoVersion}",
robolectric: "org.robolectric:robolectric:${robolectricVersion}",
]
presentationTestDependencies = [
mockito : "org.mockito:mockito-core:${mockitoVersion}",
dexmaker : "com.google.dexmaker:dexmaker:${dexmakerVersion}",
dexmakerMockito : "com.google.dexmaker:dexmaker-mockito:${dexmakerVersion}",
espresso : "com.android.support.test.espresso:espresso-core:${espressoVersion}",
testingSupportLib: "com.android.support.test:testing-support-lib:${testingSupportLibVersion}",
]
}