Dmitriy Tarasevich
04/10/2022, 7:25 PMgetSymbolsWithAnnotation
returns 0 symbols when my modules are only targeting the jvm
. If i re-add my js
or ios
targets it picks up the annotations correctly.kspJvmMain
instead of kspCommonMainMetadata
it seems to work but it puts all the generated files into the /jvm directory instead of commonJiaxiang
04/11/2022, 12:54 AMDmitriy Tarasevich
04/11/2022, 1:23 AMkotlin {
jvm()
}
and then adding a dependency on the processor with
add("kspCommonMainMetadata", project(":x-processor"))
Jiaxiang
04/11/2022, 1:38 AMDmitriy Tarasevich
04/11/2022, 1:59 AM