mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
54033fd334
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/38886 This change introduces a property called `react.internal.useHermesNightly` This allows users building RN-Tester or just ReactAndroid to fetch Hermes from the latest nightly, without having to build it from source. The change could be useful to speedup local development, but it should not be enabled on CI or when doing releases. Changelog: [Internal] [Changed] - Introduce react.internal.useHermesNightly Reviewed By: mdvacca, cipolleschi Differential Revision: D48188769 fbshipit-source-id: cb4330cb9082e9db0c7ba82e48b2d10030637353
15 lines
549 B
Properties
15 lines
549 B
Properties
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8
|
|
org.gradle.parallel=true
|
|
org.gradle.caching=true
|
|
|
|
android.useAndroidX=true
|
|
|
|
# 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
|