Android Room with RxJava3

Room now supports Rxjava3. Use the dependency below;

implementation "androidx.room:room-rxjava3:2.3.0-alpha02"

Take a look at the RxJava bridge library [https://github.com/akarnokd/RxJavaBridge#rxjavabridge] With it, you should be able to convert rxjava2 types to rxjava3 types. It's maintained by the maintainer of RxJava.

Another thing to look out for is the jetpack release notes alpha channel [https://developer.android.com/jetpack/androidx/versions/alpha-channel?hl=en] This should list the things coming down the pipeline. Unfortunately, i don't see rxjava3 bindings for room anywhere (yet), and I don't know if Google plans to maintain that, but not a bad idea to keep an eye out.