The configuration name to add a KSP processor to t...
# ksp
r
The configuration name to add a KSP processor to the Android instrumented test compilation is
kspAndroidAndroidTest
. Where is this name coming from? Can I derive this name from something? For now I’m iterating over all Kotlin targets with this pattern
Copy code
"ksp${target.name.capitalize()}"
t
The name generating implementation can be found here. It's mostly a replacement of
compile
by
ksp
of the compilation tasks, which in turn are mostly prepending
compile
to the source set and variant names with a few exceptions.
👍 1