Is there a way to force gradle to recompile Kotlin...
# gradle
b
Is there a way to force gradle to recompile Kotlin buildSrc? I keep making changes there, but then they’re not picked up
m
This is weird, usually Gradle loves to recompile
buildSrc
, maybe try to
rm -rf .gradle
?
p
Usually,
--rerun-tasks
argument makes any task forced to run, including buildSrc.
t
or just remove
buildSrc/build
folder 🧌
👍 2
b
thanks! ended up being that I was editing the wrong clone of a project 🤦‍♂️
😆 1
helps if you actually edit the files—then gradle/kotlin will recompile them 🙂
308 Views