Hey,
I am trying to find something to speed up my incremental builds with gradle. Current is 40s - 60s.
What I was thinking was to target buildDir to RAM Disk folder.
My multiproject setup includes one Android project and a Java library. When I change buildDir property in the specific project build files it works, but Android Studio project layout doesn't like it very much.
buildDir = 'G:/root/android_project/build'
buildDir = 'G:/root/library/build'
I would think that I need to change the property in root build file, but when I do that I get an error that Android Studio cannot find build folder and thus some of the IDE features might not work.
buildDir = 'G:/root/build'
What should be the correct setup for this?