Adam Jarvis
03/08/2025, 2:48 PMinterface Foo {
@Single
class Bar : Foo {
}
}
Results in:
single() { _ -> org.koin.example.Bar() } bind(org.koin.example.Foo::class)
But the correct format would be:
single() { _ -> org.koin.example.Foo.Bar() } bind(org.koin.example.Foo::class)
Note the parent class in the fully qualified path for the constructorarnaud.giuliani
03/10/2025, 2:19 PM