Hello team I am using ktor with koin, its crashing...
# ktor
b
Hello team I am using ktor with koin, its crashing
Copy code
ava.lang.NoClassDefFoundError: io/ktor/server/routing/RoutingKt
	at org.koin.ktor.ext.RouteExtKt.getKoin(RouteExt.kt:74)
Copy code
Ktor -  3.0.0
koin - 4.0.0
Is any once facing this issue ?
r
There is a known issue in Koin plugin for Ktor 3 with get/inject in Routing/Route extension functions. Scoped injection works though (call.scope.get/inject). My workaround has been calling get/inject in Application extension function then passing it by parameter to routing functions.