Key Highlights
- Hermes V1 as the default JavaScript engine – automatic performance gains across all platforms.
- Precompiled iOS binaries shipped by default – faster build times for iOS apps.
- Continued removal of Legacy Architecture components on both iOS and Android.
- Node.js 22 is now the minimum required version for running React Native.
Hermes V1 Becomes the Default JavaScript Engine
React Native 0.84 marks a significant milestone: Hermes V1 is now the default JavaScript engine on both iOS and Android. This change builds on the experimental opt-in introduced in version 0.82, delivering substantial improvements to the compiler and virtual machine. The result is measurably better JavaScript performance — faster execution and reduced memory usage — across all React Native apps.
What This Means for Your App
- Automatic performance gains: Every app built with React Native 0.84 benefits from improved execution speed and lower memory footprint, with no extra work required.
- No migration needed: If your project already uses Hermes (the default since version 0.70), you automatically upgrade to Hermes V1. No configuration changes are necessary.
Opting Out of Hermes V1
If you need to revert to the legacy Hermes compiler for compatibility reasons, you have several options:
Package Manager Override
Force the installation of the legacy hermes-compiler package (version 0.15.0) in your package.json:
- npm: Add
"overrides": { "hermes-compiler": "0.15.0" } - Yarn: Add
"resolutions": { "hermes-compiler": "0.15.0" } - pnpm: Add
"pnpm": { "overrides": { "hermes-compiler": "0.15.0" } }
iOS-Specific Opt-Out
When installing CocoaPods dependencies, set the environment variables RCT_HERMES_V1_ENABLED=0 and RCT_USE_PREBUILT_RNCORE=0.
Android-Specific Opt-Out
Add hermesV1Enabled=false inside the android/gradle.properties file, and configure the application to build React Native from source.
Precompiled Binaries on iOS by Default
Starting with React Native 0.84, precompiled binaries on iOS are enabled out of the box. Formerly available only as an opt-in feature, this change significantly reduces iOS build times. You no longer need to compile React Native core from source during every clean build. The precompiled .xcframework binaries are automatically downloaded and integrated during pod install.
Disabling Precompiled Binaries
If you need to build React Native from source (for example, when opting out of Hermes V1), disable precompiled binaries by setting RCT_USE_PREBUILT_RNCORE=0 when installing pods.
Legacy Architecture Removal Continues
Building on the foundation laid in version 0.82 (which made the New Architecture the only runtime option), React Native 0.84 continues to strip out Legacy Architecture code from both iOS and Android. As outlined in the RFC, each release removes several Legacy Architecture classes to streamline the codebase and reduce app size.
iOS Changes
In version 0.83, an experimental RCT_REMOVE_LEGACY_ARCH flag was introduced to compile out Legacy Architecture code. In version 0.84, this behavior is now the default. Legacy Architecture code is no longer included in iOS builds, resulting in shorter build times and smaller app sizes. Apps already using the New Architecture will experience no breakages.
Android Changes
On Android, similar legacy components are being removed. The exact list of removed classes can be found in the official release notes. If your project depends on any of these removed APIs, you must migrate to equivalent New Architecture APIs before upgrading.
Updated Node.js Requirement
React Native 0.84 bumps the minimum Node.js version to 22. This ensures compatibility with the latest JavaScript tooling and ecosystem libraries. If your development environment is still on an older Node.js version, update it before upgrading React Native.
Conclusion
React Native 0.84 delivers tangible improvements in performance, build speed, and code cleanliness. By making Hermes V1 the default, shipping precompiled iOS binaries, and continuing the removal of Legacy Architecture, the framework becomes faster and leaner for all developers. Upgrade today to take advantage of these enhancements.