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?
You're missing this dependency:
implementation "android.arch.lifecycle:reactivestreams:1.0.0-beta2"