Paul Woitaschek
09/15/2019, 6:45 AMsettings.gradle
file? I want to change the buildCache dir for all projects (but don't want to add it to the project's settings.gradle
because its completely specific to my build setupoctylFractal
09/15/2019, 6:46 AMPaul Woitaschek
09/15/2019, 6:48 AMPaul Woitaschek
09/15/2019, 6:49 AMCould not find method buildCache() for arguments [init_495f3zuch6b4h9iatm4zb5q9o$_run_closure1@44004ee] on build of type org.gradle.invocation.DefaultGradle.
octylFractal
09/15/2019, 6:51 AMGradle
object, not a Settings
. You'd need to acquire that first using void settingsEvaluated(Action<? super Settings> action)
, then you can write inside that closure as if you were writing in settings.gradle
Paul Woitaschek
09/15/2019, 7:07 AM