Fawwaz Yusran
Fawwaz Yusran

Reputation: 1480

Is RxJava support for Room the same as RxJava

There is now a RxJava support library for Room, and so I was wondering if I can remove RxJava library from my Android project, or use both together? I noticed that the Room support version has the same functionalities as RxJava (I am just using it for accessing a local database).

Upvotes: 0

Views: 95

Answers (1)

Valerii
Valerii

Reputation: 405

No, room-rxjava2 library has RxRoom which in turn depends on the components from rxjava2 library. Therefore build will fail in the case of excluding rxjava2 library from the project dependencies.

Upvotes: 1

Related Questions