Skip to content

Commit 7fa9fb8

Browse files
author
Mohamed Sobhy
committed
Show how to exclude RxJava correctly
1 parent adf21ca commit 7fa9fb8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,14 @@ dependencies {
3434
compile 'com.android.support:appcompat-v7:23.1.1'
3535
// TODO if you use a lower version than 8.4.0 you should uncomment the exclude line to avoid errors
3636
compile 'com.google.android.gms:play-services:8.4.0'
37+
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
38+
// compile 'io.reactivex:rxjava:1.0.13'
39+
// compile 'io.reactivex:rxandroid:1.0.1'
3740
compile('com.instabug.library:instabug:2.1') {
41+
// TODO uncomment these 2 lines to exclude RxJava from Instabug and use your own version
42+
// exclude group: 'io.reactivex', module: 'rxjava'
43+
// exclude group: 'com.netflix.rxjava', module: 'rxjava-android'
44+
3845
exclude module: 'appcompat-v7'
3946
// TODO uncomment next line if you're facing compilation issue in build.gradle about gms different versions
4047
// exclude group: 'com.google.android.gms'

0 commit comments

Comments
 (0)