Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

0.6.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@passsy passsy released this 04 Sep 22:02
· 655 commits to master since this release

ThirtyInch

  • Add Ti prefix to API classes to reduce clashes with android.view.View (TiView, TiPresenter, TiActivity, TiFragment)
  • statically typed Presenter
-public class HelloWorldActivity extends ThirtyInchActivity<HelloWorldView>
+public class HelloWorldActivity extends TiActivity<HelloWorldPresenter, HelloWorldView>
  • interface instead of abstract method for P providePresenter(), makes it easy for Kotlin
  • minSdkVersion 14
  • fragment presenter survives orientation change
  • Tests by @jveerkamp
  • NPE fix when calling bindNewView(null)

Plugin

  • compositeAndroid 0.2.1 fixed onRetainNonConfigurationInstance not called