Kyle Roe
12/20/2021, 2:34 PMArkadii Ivanov
12/20/2021, 2:38 PMArkadii Ivanov
12/20/2021, 2:39 PMKyle Roe
12/20/2021, 2:46 PMrxjava3-interop
I didn’t find anything there, but I figured out that I need to import both reaktive
and rxjava3-interop
into my android app in order to utilize the interop extensions 🙌
repository.save(story) // located in commonMain
.asRxJava3Single()
.subscribeOn(<http://scheduler.io|scheduler.io>)
.observeOn(scheduler.main)
.subscribeBy(
onSuccess = ::println
).addTo(disposeBag)
Arkadii Ivanov
12/20/2021, 3:00 PMArkadii Ivanov
12/20/2021, 3:02 PMKyle Roe
12/20/2021, 3:30 PM