Simple Kotlin Project does not show any UI
问题 I have a very simple Android Project in Kotlin. Just to dig in Kodein. I can not see the two TextViews in the main_layout? I have used MVP pattern for the only MainActivity I have there.. The app starts without a crash and is show a blank white screen. Any hints? BaseActivity: abstract class BaseActivity<V : BasePresenter.View> : AppCompatActivity(), BasePresenter.View { protected abstract val layoutResourceId : Int protected abstract val presenter : BasePresenter<V> val kodeinMu = LazyKodein