I’m using `kspExtension.useKsp2`. This API is expe...
# ksp
r
I’m using
kspExtension.useKsp2
. This API is experimental and to suppress the warning I must import
@KspExperimental
. For that I need to import
com.google.devtools.ksp:symbol-processing-api:
, which imports the whole AST API into my Gradle plugin. This isn’t great.
j
What about opting-in with the Gradle DSL instead which takes a qualified name as a string
r
This could work, but then there’s a disconnect between where I use the experimental APIs and where I opt-in.