Missing LiveDataReactiveStreams class

I am trying to use the new Android architecture components. I would 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?

+4
source share
1 answer

You are missing this dependency:

implementation "android.arch.lifecycle:reactivestreams:1.0.0-beta2"

+17
source

Source: https://habr.com/ru/post/1677686/


All Articles