|
7 | 7 | # For more details on how to configure your build environment visit
|
8 | 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
|
9 | 9 |
|
10 |
| -# Specifies the JVM arguments used for the daemon process. |
11 |
| -# The setting is particularly useful for tweaking memory settings. |
12 |
| -# Default value: -Xmx10248m -XX:MaxPermSize=256m |
13 |
| -# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 |
| 10 | +# Specifies the JVM arguments used for the Gradle Daemon. The setting is |
| 11 | +# particularly useful for configuring JVM memory settings for build performance. |
| 12 | +# This does not affect the JVM settings for the Gradle client VM. |
| 13 | +# The default is `-Xmx512m -XX:MaxMetaspaceSize=256m`. |
| 14 | +org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 |
14 | 15 |
|
15 |
| -# When configured, Gradle will run in incubating parallel mode. |
16 |
| -# This option should only be used with decoupled projects. More details, visit |
17 |
| -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects |
18 |
| -# org.gradle.parallel=true |
| 16 | +# When configured, Gradle will fork up to org.gradle.workers.max JVMs to execute |
| 17 | +# projects in parallel. To learn more about parallel task execution, see the |
| 18 | +# section on Gradle build performance: |
| 19 | +# https://docs.gradle.org/current/userguide/performance.html#parallel_execution. |
| 20 | +# Default is `false`. |
| 21 | +#org.gradle.parallel=true |
| 22 | + |
| 23 | +# AndroidX package structure to make it clearer which packages are bundled with the |
| 24 | +# Android operating system, and which are packaged with your app's APK |
| 25 | +# https://developer.android.com/topic/libraries/support-library/androidx-rn |
| 26 | +android.useAndroidX=true |
| 27 | +# Automatically convert third-party libraries to use AndroidX |
| 28 | +android.enableJetifier=true |
| 29 | + |
| 30 | +# Version of Flipper to use with React Native. Default value is whatever React |
| 31 | +# Native defaults to. To disable Flipper, set it to `false`. |
| 32 | +#FLIPPER_VERSION=0.125.0 |
| 33 | + |
| 34 | +# Uncomment the line below if building react-native from source |
| 35 | +#ANDROID_NDK_VERSION=21.4.7075529 |
19 | 36 |
|
20 | 37 | # This is an example of how you can change default DB size (6MB) to 10MB
|
21 |
| -# AsyncStorage_db_size_in_MB=10 |
| 38 | +#AsyncStorage_db_size_in_MB=10 |
22 | 39 |
|
23 | 40 | # Enable dedicated thread pool executor
|
24 | 41 | AsyncStorage_dedicatedExecutor=true
|
25 | 42 | AsyncStorage_useNextStorage=true
|
26 |
| - |
27 |
| -android.useAndroidX=true |
28 |
| -android.enableJetifier=true |
|
0 commit comments