-
Notifications
You must be signed in to change notification settings - Fork 10
/
dependencies.gradle
31 lines (24 loc) · 1.03 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
ext {
butterKnifeVersion = '7.0.1'
recyclerViewVersion = '21.0.3'
supportLibrary = '22.2.0'
firebase = '2.3.1'
rxAndroidVersion = '0.25.0'
rxJavaVersion = '1.0.10'
presentationDependencies = [
butterKnife : "com.jakewharton:butterknife:$butterKnifeVersion",
recyclerView : "com.android.support:recyclerview-v7:$supportLibrary",
cardView : "com.android.support:cardview-v7:$supportLibrary",
appCompat : "com.android.support:appcompat-v7:$supportLibrary",
supportAnnotation : "com.android.support:support-annotations:$supportLibrary",
rxAndroid : "io.reactivex:rxandroid:$rxAndroidVersion",
rxJava : "io.reactivex:rxjava:$rxJavaVersion",
]
domainDependencies = [
rxJava : "io.reactivex:rxjava:${rxJavaVersion}",
]
modelDependencies = [
fireBase : "com.firebase:firebase-client-android:$firebase",
rxJava : "io.reactivex:rxjava:$rxJavaVersion",
]
}