When I try to use annotations in an Android librar...
# koin
e
When I try to use annotations in an Android library I get
Copy code
Could not determine the dependencies of task ':feature1:extractDebugAnnotations'.
> Could not create task ':feature1:kspDebugKotlin'.
   > Could not create task of type 'KspTaskJvm'.
      > org/jetbrains/kotlin/gradle/dsl/KotlinJvmOptionsImpl
Is there a gradle.build.kts example for the setup? https://insert-koin.io/docs/setup/ka_1.0/ only has the Groovy code like
Copy code
android {
    applicationVariants.all { variant ->
        variant.sourceSets.java.each {
            it.srcDirs += "build/generated/ksp/${variant.name}/kotlin"
        }
    }
}
125 Views