gradle.properties.in 979 B

123456789101112131415161718192021222324252627282930
  1. ###
  2. ### Copyright (c) Contributors to the Open 3D Engine Project.
  3. ### For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. ###
  5. ### SPDX-License-Identifier: Apache-2.0 OR MIT
  6. ###
  7. # For more details on how to configure your build environment visit
  8. # http://www.gradle.org/docs/current/userguide/build_environment.html
  9. # Android Studio project settings overrides
  10. # Enable Gradle as a daemon to improve the startup and execution time
  11. org.gradle.daemon=true
  12. # Enable parallel execution to improve execution time
  13. org.gradle.parallel=true
  14. # make sure configure-on-demand is disabled as it really only benefits when
  15. # there are a large number of sub-projects
  16. org.gradle.configureondemand=false
  17. # Customize the jvm arguments to control things like memory limits.
  18. org.gradle.jvmargs=${GRADLE_JVM_ARGS}
  19. # required to use Android X libraries
  20. android.useAndroidX=true
  21. # Show C/C++ files build progression
  22. android.native.buildOutput=verbose