This repository has been archived by the owner on Mar 16, 2021. It is now read-only.
0.6.0
Pre-release
Pre-release
ThirtyInch
- Add
Ti
prefix to API classes to reduce clashes withandroid.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