-
Notifications
You must be signed in to change notification settings - Fork 18
Closed
Labels
Description
Kinda question which may be a bug
fun onCreate() {
navigationMessagesDisposable = presentationModel.navigationMessages.observable
.observeOn(AndroidSchedulers.mainThread())
.subscribe {
navigationMessagesDispatcher.dispatch(it)
}
}
fun onDestroy() {
navigationMessagesDisposable.dispose()
}
Posting navigation messages which commit fragment transactions may lead to
Can not perform this action after onSaveInstanceState
Or I'm missing something?