I was able to run only with
//iOS code
override func viewDidLoad() {
super.viewDidLoad()
signInPresenter = DIInjector().signInPresenter
*
}
// kotlin common code
class DIInjector {
val signInPresenter: SignInPresenter by kodein.instance()
}
may be anyone know better solution?