Releases: Arello-Mobile/Moxy
Releases · Arello-Mobile/Moxy
v1.5.3
v1.5.2
v1.5.1
1.5.0
v1.4.6
v1.4.5
v1.4.4
v1.4.3
v1.3.3
v1.3.2
- Fixed
MvpFragment
/MvpAppCompatFragment
lifecycle callbacks MvpView
will be detached from Presenter:- inside
onSaveInstanceState
, if it will be called. You be able to not commit fragments transaction allowing state loss! Just usecommit
orcommitNow
! If you don't use Cicerone. - inside
onStop
otherwise - after
MvpView
will be restarted, it will apply only new commands! - after
MvpView
will be recreated, it will apply all commands.
- inside
- Added
OneExecutionStateStrategy
- Small changes (like javadocs)
PS: Added MvpDelegate.onDestroyView()
which should be called when view will be destroyed. Causes of this is that detached view can stay alive. Example of use this beyond of Fragment is there.