hi. I added `id 'org.jetbrains.kotlin.kapt' versio...
# kapt
t
hi. I added
id 'org.jetbrains.kotlin.kapt' version '1.3.11'
to my
plugins
block, but it seems the
kapt
configuration is still missing. i always get an error
Could not find method kapt() for arguments [com.github.dzuvic:jtsgen-processor:0.4.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Any idea?
g
It should work
Do you have minimal example where this doesn't work
t
No not yet. the problem might be connnected to the project being a multiplatform project. should it work in such a context? (In the end im just curious, i think i cant use annotations anyway, as they are implemented in java only)
g
No, KAPT is JVM only feature because based on Java APT and JSR-269
t
Alright. Thank you.