Last active
October 20, 2025 07:45
-
-
Save rafaelmaeuer/0fb2d87e16e1bbeb1dc3accd0bd2d447 to your computer and use it in GitHub Desktop.
https://stackoverflow.com/questions/57350008/react-native-hermes-is-not-enabled/72530085#72530085
https://stackoverflow.com/questions/72463820/how-to-check-if-the-new-architecture-is-enabled-on-react-native-0-68/76888613#76888613
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const isHermes = global?.HermesInternal ? 'Hermes' : 'JSC'; | |
| const isFabric = global?.nativeFabricUIManager ? 'Fabric' : 'Paper'; | |
| console.log(`Engine: ${isHermes}`); | |
| console.log(`Renderer: ${isFabric}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment