我按照官方文档在我的应用程序中启用了 Hermes 引擎,但以下始终返回 false:
const isHermes = () => !!global.HermesInternal;
console.log('>>>>>>>>>>>>>', isHermes());
我所做的更改是在 android/app/build.gradle 中设置以下内容:
project.ext.react = [
enableHermes: true, // clean and rebuild if changing
]
然后我做了一个干净的构建:
cd android && ./gradlew clean
yarn android
但是 console.log 总是返回 false