image.png
# android
f
image.png
b
zipWith should be pass the list of observable to
t
It is a common RxJava pifall :
Observable
does not implement
Publisher
, only
Flowable
does. Replace
Observable.range(...)
with
Flowable.range(...)
and it should work.