mosby icon indicating copy to clipboard operation
mosby copied to clipboard

A Model-View-Presenter / Model-View-Intent library for modern Android apps

Results 28 mosby issues
Sort by recently updated
recently updated
newest added

Maybe we should add another Presenter for MVI that comes closer to the idea what Jake Wharton presented here: http://jakewharton.com/the-state-of-managing-state-with-rxjava/ The idea is to have an `Input / Output Presenter`...

enhancement
to verify / evaluate
mvi

If @sockeqwe believes this is an inappropriate spot for this topic, I will move it but I don't really know of any other places to have a prolonged dialog centering...

![image](https://cloud.githubusercontent.com/assets/3648745/17454958/c7382aac-5bdb-11e6-8440-c5a239a67661.png) 1. go to developer options and turn on 'Don't keep activities'. 2. open sample-mail app 3. go to login activity 4. pressed back. 5. the result been the pic.

example

Hi, Not 100% sure if this should be here or on SO, but it looks like a "feature request" so... Reading the series of blog posts (starting here: http://hannesdorfmann.com/android/mosby3-mvi-1) I...

I cannot run sample-mail example with some error message ![screen shot 2017-05-05 at 12 06 08 pm](https://cloud.githubusercontent.com/assets/11329673/25733477/02b87272-318c-11e7-856b-39c61c965e94.png) I tried "clear project" and "rebuild project" but fail to run, Is my...

``` public Mail getLastMailInList() { return items == null ? null : items.get(items.size() - 1); } ```

``` 05-08 16:19:15.739 2754-2754/com.hannesdorfmann.mosby3.sample.mvi E/AndroidRuntime: FATAL EXCEPTION: main io.reactivex.exceptions.OnErrorNotImplementedException at io.reactivex.internal.functions.Functions$14.accept(Functions.java:229) at io.reactivex.internal.functions.Functions$14.accept(Functions.java:226) at io.reactivex.internal.observers.LambdaObserver.onError(LambdaObserver.java:72) at io.reactivex.internal.observers.LambdaObserver.onNext(LambdaObserver.java:62) at io.reactivex.internal.util.NotificationLite.accept(NotificationLite.java:246) at io.reactivex.subjects.BehaviorSubject$BehaviorDisposable.test(BehaviorSubject.java:490) at io.reactivex.subjects.BehaviorSubject$BehaviorDisposable.emitFirst(BehaviorSubject.java:451) at io.reactivex.subjects.BehaviorSubject.subscribeActual(BehaviorSubject.java:153) at io.reactivex.Observable.subscribe(Observable.java:10700) at io.reactivex.Observable.subscribe(Observable.java:10686) at...

bug-in-sample
mvi

Either fix Scopes in `MailAppModule` or use `@Subcomponent`. Remove static fields from `MailAppModule` which is the current workaround.

enhancement
example
mvp