@@ -26,20 +26,28 @@ org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryEr
2626android.useAndroidX =true
2727# Automatically convert third-party libraries to use AndroidX
2828android.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 =false
33-
34- # Enable Fabric at runtime.
35- # USE_FABRIC=1
36-
37- # Enable new architecture, i.e. Fabric + TurboModule - implies USE_FABRIC=1.
29+ # Jetifier randomly fails on these libraries
30+ android.jetifier.ignorelist =hermes-android
31+
32+ # Use this property to specify which architecture you want to build.
33+ # You can also override it from the CLI using
34+ # ./gradlew <task> -PreactNativeArchitectures=x86_64
35+ reactNativeArchitectures =armeabi-v7a,arm64-v8a,x86,x86_64
36+
37+ # Use this property to enable support to the new architecture.
38+ # This will allow you to use TurboModules and the Fabric render in
39+ # your application. You should enable this flag either if you want
40+ # to write custom TurboModules/Fabric components OR use libraries that
41+ # are providing them.
3842# Note that this is incompatible with web debugging.
3943# newArchEnabled=true
44+ # bridgelessEnabled=true
45+
46+ # Uncomment the line below to build React Native from source.
47+ # react.buildFromSource=true
4048
41- # Uncomment the line below if building react-native from source
42- # ANDROID_NDK_VERSION=21.4.7075529
49+ # Version of Android NDK to build against.
50+ # ANDROID_NDK_VERSION=26.1.10909125
4351
4452# Version of Kotlin to build against.
45- # KOTLIN_VERSION=1.7.10
53+ # KOTLIN_VERSION=1.8.22
0 commit comments