gradle.properties 1.4 KB

12345678910111213141516171819202122232425
  1. # Project-wide Gradle settings.
  2. # IDE (eg Android Studio) users :
  3. # Settings specified in this file will override any Gradle settings
  4. # configured through the IDE.
  5. # For more details on how to configure your build environment visit
  6. # http : // www.gradle.org/docs/current/userguide/build_environment.html
  7. # The Gradle daemon aims to improve the startup and execution time of Gradle.
  8. # When set to true the Gradle daemon is to run the build.
  9. # TODO : disable daemon on CI, Since Builds should BE clean and Reliable on servers
  10. org.gradle.daemon = true
  11. # Specifies the JVM arguments used for the daemon process.
  12. # The setting is particularly useful for tweaking memory settings.
  13. # Default value : -Xmx10248m -XX : MaxPermSize = 256M
  14. org.gradle.jvmargs=-Xmx5120m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
  15. # When configured, Gradle will run in incubating parallel mode.
  16. # This option should only be used with decoupled projects. More details, visit
  17. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec : decoupled_projects
  18. org.gradle.parallel = true
  19. # Enables new incubating mode that makes Gradle selective when configuring projects.
  20. # Only relevant projects are configured which results in faster builds for large multi-projects.
  21. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html #sec : configuration_on_demand
  22. org.gradle.configureondemand = true