mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This comment on how to enable/disable Hermes went out of sync with the release of the New Architecture. Got reported on the website here: https://github.com/facebook/react-native-website/issues/3105 I'm fixing it. Changelog: [Internal] [Changed] - Fix comments on how to enable/disable Hermes on iOS Reviewed By: cipolleschi Differential Revision: D36204189 fbshipit-source-id: 5831a9500477115ebe5fa5cb62176ceefc722839
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
|
|
platform :ios, '12.4'
|
|
install! 'cocoapods', :deterministic_uuids => false
|
|
|
|
target 'HelloWorld' do
|
|
config = use_native_modules!
|
|
|
|
# Flags change depending on the env values.
|
|
flags = get_default_flags()
|
|
|
|
use_react_native!(
|
|
:path => config[:reactNativePath],
|
|
# By default, Hermes is disabled on Old Architecture, and enabled on New Architecture.
|
|
# You can enabled/disable it manually by replacing `flags[:hermes_enabled]` with `true` or `false`.
|
|
:hermes_enabled => flags[:hermes_enabled],
|
|
:fabric_enabled => flags[:fabric_enabled],
|
|
# An absolute path to your application root.
|
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
)
|
|
|
|
target 'HelloWorldTests' do
|
|
inherit! :complete
|
|
# Pods for testing
|
|
end
|
|
|
|
# Enables Flipper.
|
|
#
|
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
# you should disable the next line.
|
|
use_flipper!()
|
|
|
|
post_install do |installer|
|
|
react_native_post_install(installer)
|
|
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
|
end
|
|
end
|