From 70fabf6a6b5bfbb0381c88c4a0c72e34e6a3571e Mon Sep 17 00:00:00 2001 From: len Date: Thu, 12 May 2016 20:15:15 +0200 Subject: [PATCH] Bump dependencies and support library --- app/build.gradle | 8 ++++---- .../tachiyomi/ui/manga/chapter/ChaptersPresenter.kt | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8d85a26672..c07406c703 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -89,7 +89,7 @@ kapt { } dependencies { - final SUPPORT_LIBRARY_VERSION = '23.3.0' + final SUPPORT_LIBRARY_VERSION = '23.4.0' final DAGGER_VERSION = '2.4' final OKHTTP_VERSION = '3.2.0' final RETROFIT_VERSION = '2.0.2' @@ -112,8 +112,8 @@ dependencies { compile "com.android.support:preference-v14:$SUPPORT_LIBRARY_VERSION" // ReactiveX - compile 'io.reactivex:rxandroid:1.1.0' - compile 'io.reactivex:rxjava:1.1.1' + compile 'io.reactivex:rxandroid:1.2.0' + compile 'io.reactivex:rxjava:1.1.5' compile 'com.f2prateek.rx.preferences:rx-preferences:1.0.1' // Network client @@ -126,7 +126,7 @@ dependencies { compile "com.squareup.retrofit2:adapter-rxjava:$RETROFIT_VERSION" // IO - compile 'com.squareup.okio:okio:1.7.0' + compile 'com.squareup.okio:okio:1.8.0' // JSON compile 'com.google.code.gson:gson:2.6.2' diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersPresenter.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersPresenter.kt index b00c7028a0..5ddbf5a5b6 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersPresenter.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersPresenter.kt @@ -75,7 +75,6 @@ class ChaptersPresenter : BasePresenter() { start(DB_CHAPTERS) add(db.getChapters(manga).asRxObservable() - .subscribeOn(Schedulers.io()) .doOnNext { chapters -> this.chapters = chapters SharedData.get(ChapterCountEvent::class.java)?.emit(chapters.size)