我正在尝试在我的适用于 iOS 的 React Native 0.65 应用程序中启用 Hermes。我已按照文档通过对我的 Podfile 进行此更改来启用 Hermes:
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
- :hermes_enabled => false
+ :hermes_enabled => true
)
然后我清理了构建文件夹,运行pod install
并在调试模式下为物理 iOS 设备重建了我的应用程序。但是,在我的应用程序中运行 React Native 提供的以下代码表明 Hermes 实际上已禁用:
const isHermes = () => !!global.HermesInternal; // <-- returns false
如何在我的应用程序中启用 Hermes?我正在运行 React Native 0.65.1,最近从 0.64.2 升级。谢谢你。