gradle.properties 1.0 KB

12345678910111213141516171819202122232425
  1. # Godot custom build Gradle settings.
  2. # These properties apply when running custom build from the Godot editor.
  3. # NOTE: This should be kept in sync with 'godot/platform/android/java/gradle.properties' except
  4. # where otherwise specified.
  5. # For more details on how to configure your build environment visit
  6. # http://www.gradle.org/docs/current/userguide/build_environment.html
  7. android.enableJetifier=true
  8. android.useAndroidX=true
  9. # Specifies the JVM arguments used for the daemon process.
  10. # The setting is particularly useful for tweaking memory settings.
  11. org.gradle.jvmargs=-Xmx4536m
  12. # When configured, Gradle will run in incubating parallel mode.
  13. # This option should only be used with decoupled projects. More details, visit
  14. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
  15. # org.gradle.parallel=true
  16. org.gradle.warning.mode=all
  17. # Enable resource optimizations for release build.
  18. # NOTE: This is turned off for template release build in order to support the build legacy process.
  19. android.enableResourceOptimizations=true