mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 21:27:46 +00:00
606e14552d
Summary: Android is currently raising a warning as we're using AGP 8.1 with SDK 34. I'm suppressing this warning that we can remove once we bump to AGP 8.2 Changelog: [Internal] [Changed] - Set android.suppressUnsupportedCompileSdk=34 for the root project Reviewed By: mdvacca Differential Revision: D48437747 fbshipit-source-id: 6d2ed5f4f021052934206fd9149c048cdd5350df
18 lines
634 B
Properties
18 lines
634 B
Properties
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8
|
|
org.gradle.parallel=true
|
|
org.gradle.caching=true
|
|
|
|
android.useAndroidX=true
|
|
|
|
# Can be removed once we bump to AGP 8.2.0
|
|
android.suppressUnsupportedCompileSdk=34
|
|
|
|
# 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
|
|
|
|
# Controls whether to use Hermes from nightly builds. This will speed up builds
|
|
# but should NOT be turned on for CI or release builds.
|
|
react.internal.useHermesNightly=false
|