10
10
# Specifies the JVM arguments used for the daemon process.
11
11
# The setting is particularly useful for tweaking memory settings.
12
12
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13
- # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14
-
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
13
+ org.gradle.jvmargs =-Xmx2048m -XX:MaxMetaspaceSize=512m
19
14
15
+ # AndroidX package structure to make it clearer which packages are bundled with the
16
+ # Android operating system, and which are packaged with your app's APK
17
+ # https://developer.android.com/topic/libraries/support-library/androidx-rn
20
18
android.useAndroidX =true
21
- android.enableJetifier =true
19
+ # Automatically convert third-party libraries to use AndroidX
20
+ android.enableJetifier =true
21
+
22
+ # Version of flipper SDK to use with React Native
23
+ FLIPPER_VERSION =0.125.0
24
+
25
+ # Use this property to specify which architecture you want to build.
26
+ # You can also override it from the CLI using
27
+ # ./gradlew <task> -PreactNativeArchitectures=x86_64
28
+
29
+ reactNativeArchitectures =armeabi-v7a,arm64-v8a,x86,x86_64
30
+ # Use this property to enable support to the new architecture.
31
+ # This will allow you to use TurboModules and the Fabric render in
32
+ # your application. You should enable this flag either if you want
33
+ # to write custom TurboModules/Fabric components OR use libraries that
34
+ # are providing them.
35
+ newArchEnabled =false
0 commit comments