Hey all! I’m working on android project, and I wan...
# gradle
m
Hey all! I’m working on android project, and I want to collect all Kotlin Compiler warnings to a file to process them afterwards. I haven’t found any way to collect warnings, produced by kotlin gradle plugin. Maybe you can give me some hints?
v
Just redirect the output of Gradle to a file?
m
Just redirect the output of Gradle to a file?
I can try it, but I will need to grep warnings manually / associate warnings with module manually. Also, it can’t be cached, because to generate full warnings report, I will need to run
compileAll --rerun-tasks
no matter how many files are changed since last launch.