Hi, it seems like what works to debug a symbol pro...
# ksp
m
Hi, it seems like what works to debug a symbol processor is changing. I used to use:
Copy code
./gradlew -Dorg.gradle.debug=true -Dkotlin.compiler.execution.strategy=in-process module:taskName
Now it seems like no-daemon is needed (I had stopped gradle daemon before) e.g.
Copy code
./gradlew :module:taskName:taskName --no-daemon -Dorg.gradle.debug=true -Pkotlin.compiler.execution.strategy=in-process
I think how to run the debugger should be documented and supported. Developing without a working debugger is not fun. This is one of the first issues ever filed: https://github.com/google/ksp/issues/31 There are various suggestions - some work, some don't. Please document this.
t
We planned to do this in this quarter. Thanks for reminding us! 🙏
👍 2