Moxy Versions Save

Moxy is MVP library for Android

v1.5.3

6 years ago
  • Allow to specify MoxyReflector package and use it from another module (pull request)

v1.5.2

6 years ago
  • Optimize memory usages, when View detach from presenter but still alive

v1.5.1

7 years ago
  • Fixed bug of save Android view state (issue 114)

1.5.0

7 years ago
  • Fixed leak of presenters when it's in child delegate
  • Annotation processor enchxansement

v1.4.6

7 years ago
  • Improve support of generics
  • Fix crash when no usages of Moxy's annotations
  • Fix call of MvpDelegate's methods in Fragment

v1.4.5

7 years ago
  • Change callbacks execute time
  • Doesn't call presenter.detachView(view) if this view has been detached

v1.4.4

7 years ago
  • Added javadoc and sources

v1.4.3

7 years ago
  • Removed reflection
  • Added some tests

v1.3.3

7 years ago
  • Fixed a potential NullPointerException
  • Fixed moment of execute some MvpDelegate methods

v1.3.2

7 years ago
  • 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 use commit or commitNow ! 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.
  • 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.