<@U0B85AN68> Last time I tried that it was not pos...
# kapt
m
@Eugenio Last time I tried that it was not possible. You couldn't generate and compile Kotlin code in a single pass since javac preprocessor only accepts
.java
or
.class
files. You could try generating kotlin source code, compile it to a
.class
file with kotlinc and feed it to javac. But then compiling a file of generated code its not easy if there are dependencies.