2020-04-03 23:21:30 +03:00
|
|
|
# Project-wide Gradle settings.
|
|
|
|
|
|
|
|
# IDE (e.g. Android Studio) users:
|
|
|
|
# Gradle settings configured through the IDE *will override*
|
|
|
|
# any settings specified in this file.
|
2022-07-26 00:08:05 +03:00
|
|
|
|
2020-04-03 23:21:30 +03:00
|
|
|
# For more details on how to configure your build environment visit
|
|
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
|
|
|
2022-02-17 02:12:10 +03:00
|
|
|
# Specifies the JVM arguments used for the Gradle Daemon. The setting is
|
|
|
|
# particularly useful for configuring JVM memory settings for build performance.
|
|
|
|
# This does not affect the JVM settings for the Gradle client VM.
|
|
|
|
# The default is `-Xmx512m -XX:MaxMetaspaceSize=256m`.
|
|
|
|
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
2020-04-03 23:21:30 +03:00
|
|
|
|
2022-02-17 02:12:10 +03:00
|
|
|
# When configured, Gradle will fork up to org.gradle.workers.max JVMs to execute
|
|
|
|
# projects in parallel. To learn more about parallel task execution, see the
|
|
|
|
# section on Gradle build performance:
|
|
|
|
# https://docs.gradle.org/current/userguide/performance.html#parallel_execution.
|
|
|
|
# Default is `false`.
|
|
|
|
#org.gradle.parallel=true
|
2020-04-03 23:21:30 +03:00
|
|
|
|
2020-04-24 22:32:32 +03:00
|
|
|
# AndroidX package structure to make it clearer which packages are bundled with the
|
|
|
|
# Android operating system, and which are packaged with your app's APK
|
|
|
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
2020-04-03 23:21:30 +03:00
|
|
|
android.useAndroidX=true
|
2020-04-24 22:32:32 +03:00
|
|
|
# Automatically convert third-party libraries to use AndroidX
|
2020-04-03 23:21:30 +03:00
|
|
|
android.enableJetifier=true
|
2024-04-11 20:32:42 +03:00
|
|
|
# Jetifier randomly fails on these libraries
|
|
|
|
android.jetifier.ignorelist=hermes-android
|
|
|
|
|
|
|
|
# Use this property to specify which architecture you want to build.
|
|
|
|
# You can also override it from the CLI using
|
|
|
|
# ./gradlew <task> -PreactNativeArchitectures=x86_64
|
|
|
|
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
|
|
|
|
|
|
|
|
# Use this property to enable support to the new architecture.
|
|
|
|
# This will allow you to use TurboModules and the Fabric render in
|
|
|
|
# your application. You should enable this flag either if you want
|
|
|
|
# to write custom TurboModules/Fabric components OR use libraries that
|
|
|
|
# are providing them.
|
|
|
|
# Note that this is incompatible with web debugging.
|
|
|
|
#newArchEnabled=true
|
|
|
|
#bridgelessEnabled=true
|
|
|
|
|
|
|
|
# Uncomment the line below to build React Native from source.
|
|
|
|
#react.buildFromSource=true
|
|
|
|
|
|
|
|
# Version of Android NDK to build against.
|
|
|
|
#ANDROID_NDK_VERSION=26.1.10909125
|
|
|
|
|
|
|
|
# Version of Kotlin to build against.
|
|
|
|
#KOTLIN_VERSION=1.8.22
|