forked from dariuszseweryn/RxAndroidBle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
29 lines (29 loc) · 1.63 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
ext {
rxJavaVersion = '2.2.17'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
shadowPluginVersion = '5.0.0'
daggerVersion = '2.15'
libs = [
/* Library-only dependencies */
rxjava : "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxandroid : 'io.reactivex.rxjava2:rxandroid:2.1.1',
rxrelay : 'com.jakewharton.rxrelay2:rxrelay:2.1.1',
junit : 'junit:junit:4.13',
groovy : 'org.codehaus.groovy:groovy:2.5.8',
spock : ['org.spockframework:spock-core:1.2-groovy-2.5',
'cglib:cglib-nodep:3.3.0',
'org.objenesis:objenesis:2.6'],
electricspock : 'com.github.hkhc:electricspock:0.9',
dagger : "com.google.dagger:dagger:$daggerVersion",
dagger_compiler : "com.google.dagger:dagger-compiler:$daggerVersion",
/* Shared library-sample apps dependencies */
annotations : "androidx.annotation:annotation:1.1.0",
robolectric : 'org.robolectric:robolectric:3.8',
/* Sample apps-only dependencies */
rxjava_replayingshare : 'com.jakewharton.rx2:replaying-share:2.2.0',
rxjava_binding : 'com.jakewharton.rxbinding3:rxbinding:3.1.0',
appcompat : 'androidx.appcompat:appcompat:1.1.0',
material_design : 'com.google.android.material:material:1.0.0'
]
}