You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not exactly sure if this is a bug or intended, But I can't enable Hermes by just running USE_HERMES=1 pod installas suggested here (since the docs site seems outdated) because in Podfile:
:hermes_enabled => false
I'm unaware if there is any problem with Hermes on MacOS that motivated this, I was just testing DevTools and Hermes is needed for that.
Expected Behavior
just run USE_HERMES=1 pod install to enable Hermes
Actual Behavior
running USE_HERMES=1 pod install does nothing
Reproducible Demo
To reproduce:
run npx react-native-macos-init to add macos to a RN project
run cd macos && USE_HERMES=1 pod install
Additional context
I just updated the Podfile to:
use_react_native!(
:path => '../node_modules/react-native-macos',
- :hermes_enabled => false+ :hermes_enabled => ENV['USE_HERMES'] == '1',
:fabric_enabled => ENV['RCT_NEW_ARCH_ENABLED'] == '1',
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
And all the related pods seems to be installed correctly and build and running worked without any issues so far.
If the template is intended to be like this, feel free to close it right away.
The text was updated successfully, but these errors were encountered:
Environment
Steps to reproduce the bug
Not exactly sure if this is a bug or intended, But I can't enable Hermes by just running
USE_HERMES=1 pod install
as suggested here (since the docs site seems outdated) because in Podfile:I'm unaware if there is any problem with Hermes on MacOS that motivated this, I was just testing DevTools and Hermes is needed for that.
Expected Behavior
just run
USE_HERMES=1 pod install
to enable HermesActual Behavior
running
USE_HERMES=1 pod install
does nothingReproducible Demo
To reproduce:
npx react-native-macos-init
to add macos to a RN projectUSE_HERMES=1 pod install
Additional context
I just updated the Podfile to:
And all the related pods seems to be installed correctly and build and running worked without any issues so far.
If the template is intended to be like this, feel free to close it right away.
The text was updated successfully, but these errors were encountered: