is it possible to exclude files from compilation? ...
# gradle
h
is it possible to exclude files from compilation? I replace something in my build.gradle and set the new sources in
compileKotlin
but it complains about redeclarations
Copy code
compileKotlin {
  dependsOn sourceMainKotlin
  source = file('build/sources/kotlin')
}