Hello guys. How can i inject the activity view to ...
# koin
s
Hello guys. How can i inject the activity view to the presenter? i have found only this solution on internet
Copy code
presenter.attachView(this)
I resolve the problem with this
Copy code
val presenter : MainContract.Presenter by inject { parametersOf(this@MainActivity) }