How to unsubscribe automatically after receiving onNext() ?
For now I use this code:
rxObservable .compose(bindToLifecycle()) // unsubscribe automaticall
I think this is what you need:
rxObservable.compose(bindToLifecycle()) .takeFirst(lifecycleEvent -> lifecycleEvent == LifecycleEvent.PAUSE);