So far I've added the following to my build.gradle
apply plugin: 'base'
clean << {
delete '${rootDir}/api-library/auto-generated-classes/'
println '${rootDir}/api-library/auto-generated-classes/'
}
However, not only is my file not deleted, but the print statement shows that ${rootDir}
is not being converted to the root directory of my project.
Why won't this work, what concepts am I missing?