something fun to try would be to add something lik...
# gradle
e
something fun to try would be to add something like
compileKotlin.getInputs().files(project.files('.').filter { it.name.endsWith('.kt') })
to get the compileKotlin task to recompile when the files have been updated
👍 1
s
kotlin compile task does support incremental compilation. So shouldn’t these (input/output files) configured by default?
e
they should be... but it looks like something with the cache didn't work