Cornelius Wichering
04/22/2022, 7:47 PM@OneAnnotation(value = "someDetail")
fun methodA() { ... }
I want ksp to add another annotation like this
@AnotherAnnotation(value = "someDetail") // value taken from "original" annotation
@OneAnnotation(value = "someDetail")
fun methodA() { ... }
Do you think ksp is a good fit for this task? Any hints on how to do it?yigit
04/22/2022, 7:48 PMCornelius Wichering
04/22/2022, 7:50 PM