-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
42 lines (37 loc) · 1.92 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
ext {
reduxVersion = '1.0.1'
rxJavaVersion = '2.1.14'
rxAndroidVersion = '2.0.2'
rxRelayVersion = '2.0.0'
gsonVersion = '2.8.5'
retrofitVersion = '2.4.0'
supportLibraryVersion = '27.1.0'
constraintLayoutVersion = '1.1.0'
kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
demoDependencies = [
kotlinStdlib : kotlinStdlib,
reduxAndroid : "net.attilaszabo.redux:redux-kotlin-base-implementation-android:$reduxVersion",
rxJava : "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
rxRelay : "com.jakewharton.rxrelay2:rxrelay:$rxRelayVersion",
supportAppcompat : "com.android.support:appcompat-v7:$supportLibraryVersion",
supportRecyclerView : "com.android.support:recyclerview-v7:$supportLibraryVersion",
supportDesign : "com.android.support:design:$supportLibraryVersion",
supportCardView : "com.android.support:cardview-v7:$supportLibraryVersion",
supportConstraintLayout: "com.android.support.constraint:constraint-layout:$constraintLayoutVersion"
]
domainDependencies = [
kotlinStdlib: kotlinStdlib,
redux : "net.attilaszabo.redux:redux-kotlin:$reduxVersion"
]
dataDependencies = [
kotlinStdlib: kotlinStdlib
]
dataSourcesDependencies = [
kotlinStdlib : kotlinStdlib,
gson : "com.google.code.gson:gson:$gsonVersion",
retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofitGsonConverter : "com.squareup.retrofit2:converter-gson:$retrofitVersion",
retrofitScalarsConverter: "com.squareup.retrofit2:converter-scalars:$retrofitVersion"
]
}