I'm trying to setting up the `koin-annotations` in...
# koin
p
I'm trying to setting up the
koin-annotations
in a KMP project for studies purposes. In generated
Default.kt
classes I'm getting these errors in import (first image). How can I fix it? I've tried to change generated class manually (just to check) and solve the erros. But of course it doesn't provoke any impact because when I run the app the class it will be regenerated etc.
a
only on KMP/Generated project no? I didin't see that in standard Android/Kotlin project
d
you can fix this in your build.gradle.kts:
Copy code
ksp {
    arg("USE_COMPOSE_VIEWMODEL","true")
}