gradle.properties 1.2 KB

123456789101112131415161718192021222324
  1. # Copyright (c) 2008-2023 the Urho3D project
  2. # License: MIT
  3. # Project-wide Gradle settings.
  4. # IDE (e.g. Android Studio) users:
  5. # Gradle settings configured through the IDE *will override*
  6. # any settings specified in this file.
  7. # For more details on how to configure your build environment visit
  8. # http://www.gradle.org/docs/current/userguide/build_environment.html
  9. # Specifies the JVM arguments used for the daemon process.
  10. # The setting is particularly useful for tweaking memory settings.
  11. org.gradle.jvmargs=-Xmx4G
  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. # AndroidX package structure to make it clearer which packages are bundled with the
  17. # Android operating system, and which are packaged with your app's APK
  18. # https://developer.android.com/topic/libraries/support-library/androidx-rn
  19. android.useAndroidX=true
  20. # Automatically convert third-party libraries to use AndroidX
  21. android.enableJetifier=true
  22. # Kotlin code style for this project: "official" or "obsolete":
  23. kotlin.code.style=official