RxJava2-MVVM-Android-Structure icon indicating copy to clipboard operation
RxJava2-MVVM-Android-Structure copied to clipboard

Results 2 RxJava2-MVVM-Android-Structure issues
Sort by recently updated
recently updated
newest added

In `LoginAPIService` and `RegistrationAPIService`, you use `onErrorResumeNext()` with a method that always throws an `Exception`, but never returns an `Observable`. Isn't it better to just use `doOnError()` for that?

You don't seem to handle configuration changes at the moment. Thinking to send a PR ...