Does kapt with K2 means kapt will run as a compile...
# kapt
e
Does kapt with K2 means kapt will run as a compiler plugin (possibly during the frontend phase of the compilation)?
d
No, it still runs in a separate step, same as K1 kapt Technically it is implemented as a compiler plugin providing an
FirAnalysisHandlerExtension
, but this extension is special one, which completely alters the pipeline instead of embedding into some parts of the regular pipeline as all other extensions
e
Got it. Thanks!