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
Solution 1:
You override the wrong onCreate(savedInstanceState: Bundle?, persistentState: PersistableBundle?)
in you activity:
use this : onCreate(savedInstanceState: Bundle?)
Post a Comment for "Simple Kotlin Project Does Not Show Any Ui"