Нема описа

gradle.properties 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Project-wide Gradle settings.
  2. # IDE (e.g. Android Studio) users:
  3. # Gradle settings configured through the IDE *will override*
  4. # any settings specified in this file.
  5. # For more details on how to configure your build environment visit
  6. # http://www.gradle.org/docs/current/userguide/build_environment.html
  7. # Specifies the JVM arguments used for the daemon process.
  8. # The setting is particularly useful for tweaking memory settings.
  9. # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
  10. org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2g -Dkotlin.daemon.jvm.options=-Xmx3g
  11. org.gradle.daemon=true
  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.caching=true
  17. # AndroidX package structure to make it clearer which packages are bundled with the
  18. # Android operating system, and which are packaged with your app's APK
  19. # https://developer.android.com/topic/libraries/support-library/androidx-rn
  20. android.useAndroidX=true
  21. # Enable AAPT2 PNG crunching
  22. android.enablePngCrunchInReleaseBuilds=true
  23. # Use this property to specify which architecture you want to build.
  24. # You can also override it from the CLI using
  25. # ./gradlew <task> -PreactNativeArchitectures=x86_64
  26. reactNativeArchitectures=arm64-v8a
  27. # Use this property to enable support to the new architecture.
  28. # This will allow you to use TurboModules and the Fabric render in
  29. # your application. You should enable this flag either if you want
  30. # to write custom TurboModules/Fabric components OR use libraries that
  31. # are providing them.
  32. newArchEnabled=true
  33. # Use this property to enable or disable the Hermes JS engine.
  34. # If set to false, you will be using JSC instead.
  35. hermesEnabled=true
  36. # Use this property to enable edge-to-edge display support.
  37. # This allows your app to draw behind system bars for an immersive UI.
  38. # Note: Only works with ReactActivity and should not be used with custom Activity.
  39. edgeToEdgeEnabled=true
  40. # Enable GIF support in React Native images (~200 B increase)
  41. expo.gif.enabled=true
  42. # Enable webp support in React Native images (~85 KB increase)
  43. expo.webp.enabled=true
  44. # Enable animated webp support (~3.4 MB increase)
  45. # Disabled by default because iOS doesn't support animated webp
  46. expo.webp.animated=false
  47. # Enable network inspector
  48. EX_DEV_CLIENT_NETWORK_INSPECTOR=true
  49. # Use legacy packaging to compress native libraries in the resulting APK.
  50. expo.useLegacyPackaging=false
  51. # Specifies whether the app is configured to use edge-to-edge via the app config or plugin
  52. # WARNING: This property has been deprecated and will be removed in Expo SDK 55. Use `edgeToEdgeEnabled` or `react.edgeToEdgeEnabled` to determine whether the project is using edge-to-edge.
  53. expo.edgeToEdgeEnabled=true