I am trying to use new Android Architecture Components. I'dd like to convert Rx Flowable to LiveData with LiveDataReactiveStreams but the class is missing.
Here are my dependencies:
compile "android.arch.lifecycle:runtime:1.0.0-alpha1"
compile "android.arch.lifecycle:extensions:1.0.0-alpha1"
kapt "android.arch.lifecycle:compiler:1.0.0-alpha1"
Any ideas?
LiveDataReactiveStreams offers a simple interface that allows you to convert RxJava streams to LiveData in a direct way.
Reactive Streams is an initiative to provide a standard for asynchronous stream processing with non-blocking back pressure. This encompasses efforts aimed at runtime environments (JVM and JavaScript) as well as network protocols.
You're missing this dependency:
implementation "android.arch.lifecycle:reactivestreams:1.0.0-beta2"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With