I'm trying to replace Dagger 2 to Koin in my current project and I don't want to rewrite some classes in Kotlin to use it.
Is possible to inject with Koin in java classes?
In Kotlin is just
// Inject MyPresenter
val presenter : MyPresenter by inject()
Thanks