<How to add Koin to Ktor project> I am trying to i...
# stackoverflow
u
How to add Koin to Ktor project I am trying to install "Koin" for DI. I have added the Koin dependency to my gradle but it doesn't seem to install. implementation("io.insert-koinkoin core3.2") implementation("io.insert-koinkoin ktor3.2") This is my plugin method fun Application.configureDependencyInjection(){ install(Koin) { /* My modules are meant to go in here. */ } } However, I keep getting this error: "Unresolved reference: Koin"