When to use gradle.properties vs. settings.gradle?
A gradle build has three files build.gradle that defines the build configuration scripts gradle.properties settings.gradle Questions What are differences between settings.gradle & gradle.properties ? When should a settings be put in settings.gradle vs. gradle.properties ? settings.gradle The settings.gradle file is a Groovy script, just like the build.gradle file. Only one settings.gradle script will be executed in each build (in comparison to multiple build.gradle scripts in multi-project builds). The settings.gradle script will be executed before any build.gradle script and even before the