Does kap work on non JVM projects or is intended o...
# kapt
r
Does kap work on non JVM projects or is intended only for JVM projects since apt is part of a JSR? I can't find any docs related to native or JS.
g
Kapt depends on Java’s APT, so no support of other platforms. In the future Internal Representation API of Kotlin Compiler and compiler plugins will allow to write such code generators for other platforms.
👍 2