Reputation: 4003
I am trying to reduced the time that gradle takes to build.
I would like to try https://stackoverflow.com/a/27171878/391401 but I am using graddle wrapper. So will those changes take effect?
Upvotes: 0
Views: 43
Reputation: 1118
Yes it will. Just put it into your project root directory. See the Gradle User Guide on how to configure your build environment.
Note that Android Studio uses the daemon by default, so setting it in gradle.properties
only affects console builds.
Upvotes: 1