I am using RxJava3 with Room in my project but I am getting the following error
error: Not sure how to convert a Cursor to this method's return type (io.reactivex.rxjava3.core.Flowable>)
Below is DAO interface method on which I am getting the error
@Query("SELECT * FROM wishlist_table")
Flowable<List<WishListMovie>> getWishList();
I think maybe its because I am using the dependency below in my grade file:
implementation "androidx.room:room-rxjava2:$room_version"
I tried to find the above dependency for RxJava 3 but I was unable to find it.
I want to know how can I use RxJava 3 with Room or should I use RxJava 2 instead in my project.