One other thing I'm unsure about: in most gradle m...
# koin
j
One other thing I'm unsure about: in most gradle modules I have:
Copy code
@Module
@ComponentScan
class XyzModule
in my KMP modules, however, I'm restricted to:
Copy code
val abcModule = module {
  singleOf(::XyzClass)
}
because Koin Annotations doesn't support JS yet (https://github.com/InsertKoinIO/koin-annotations/issues/89). This is the only way, right? Can I somehow include that
val abcModule
in my
XyzModule
?
a
if you use JS, Koin Annotations is still stuck yes