2019-10-31 15:23:40 +05:30
|
|
|
# Project-wide Gradle settings.
|
|
|
|
|
# IDE (e.g. Android Studio) users:
|
|
|
|
|
# Gradle settings configured through the IDE *will override*
|
|
|
|
|
# any settings specified in this file.
|
|
|
|
|
# For more details on how to configure your build environment visit
|
|
|
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
|
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
|
|
|
# The setting is particularly useful for tweaking memory settings.
|
2025-06-12 22:25:22 +05:30
|
|
|
org.gradle.jvmargs=-Xmx8g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseG1GC -XX:MaxMetaspaceSize=1g
|
|
|
|
|
kotlin.daemon.jvmargs=-Xmx6g
|
2019-10-31 15:23:40 +05:30
|
|
|
# When configured, Gradle will run in incubating parallel mode.
|
2024-11-12 13:49:37 +05:30
|
|
|
# This option should only be used with decoupled projects. For more details, visit
|
|
|
|
|
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
|
|
|
|
|
org.gradle.parallel=true
|
2019-10-31 15:23:40 +05:30
|
|
|
# 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
|
|
|
|
|
android.useAndroidX=true
|
|
|
|
|
# Automatically convert third-party libraries to use AndroidX
|
|
|
|
|
android.enableJetifier=true
|
2025-06-27 15:39:51 +05:30
|
|
|
# List of third-party libraries that should not be jetified
|
|
|
|
|
android.jetifier.ignorelist=byte-buddy-1.17.5.jar
|
2019-10-31 15:23:40 +05:30
|
|
|
# Kotlin code style for this project: "official" or "obsolete":
|
|
|
|
|
kotlin.code.style=official
|
2024-11-12 13:49:37 +05:30
|
|
|
# Enables namespacing of each library's R class so that its R class includes only the
|
|
|
|
|
# resources declared in the library itself and none from the library's dependencies,
|
|
|
|
|
# thereby reducing the size of the R class for that library
|
2023-11-07 15:23:05 +05:30
|
|
|
android.nonTransitiveRClass=true
|
2024-11-12 13:49:37 +05:30
|
|
|
# Enables Gradle Build Cache
|
|
|
|
|
org.gradle.caching=true
|
|
|
|
|
# Enables Gradle Configuration Cache
|
2024-10-12 11:24:24 +05:30
|
|
|
org.gradle.configuration-cache=true
|
|
|
|
|
org.gradle.configuration-cache.problems=warn
|
2024-11-12 13:49:37 +05:30
|
|
|
org.gradle.configuration-cache.max-problems=7
|
|
|
|
|
# Enables Hermes Engine for React Native
|
|
|
|
|
hermesEnabled=true
|