forked from dariuszseweryn/RxAndroidBle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
25 lines (25 loc) · 1.3 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
ext {
supportVersion = '27.1.0'
rxJavaVersion = '2.2.0'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
shadowPluginVersion = '2.0.2'
daggerVersion = '2.15'
libs = [
/* Application dependencies */
support : "com.android.support:support-v4:$supportVersion",
support_annotations: "com.android.support:support-annotations:$supportVersion",
rxjava : "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxandroid : 'io.reactivex.rxjava2:rxandroid:2.0.2',
rxrelay : 'com.jakewharton.rxrelay2:rxrelay:2.0.0',
junit : 'junit:junit:4.12',
groovy : 'org.codehaus.groovy:groovy:2.4.13',
spock : ['org.spockframework:spock-core:1.1-groovy-2.4',
'cglib:cglib-nodep:3.2.7',
'org.objenesis:objenesis:2.6'],
robolectric : 'org.robolectric:robolectric:3.8',
electricspock : 'com.github.hkhc:electricspock:0.9',
dagger : "com.google.dagger:dagger:$daggerVersion",
dagger_compiler : "com.google.dagger:dagger-compiler:$daggerVersion"
]
}