I'm a beginner with gradle and would like to use koin in my Kotlin project. However, I get the following error Execution failed for task ':compileTestKotlin'. &
A simplified example: I have the following Koin module: val testModule = { factory<User> { (name: String) -> User(name) } } The Use
My project is on Koin 2.2.3 and I search to scope a viewModel in function of a graph. In my ViewModelModule I got this: val Int.navQualifier: Qualifier get() =