Skip to content

Commit f1c8d6e

Browse files
committed
improved Hermes V1 verification
1 parent 3331140 commit f1c8d6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/blog/2025-10-08-react-native-0.82.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ RCT_HERMES_V1_ENABLED=1 bundle exec pod install
136136

137137
Keep in mind that Hermes V1 is not compatible with the precompiled React Native builds, so make sure you don’t use the `RCT_USE_PREBUILT_RNCORE` flag when installing pods.
138138

139-
4. To verify whether the app is running Hermes V1, you could run the following in your JavaScript code or DevTools console:
139+
4. To confirm if your app is running Hermes V1, execute the following code within your app or DevTools console. This code will return the Hermes version, which should match the version specified in step 1 (`250829098.0.1`):
140140

141141
```jsx
142-
HermesInternal.getRuntimeProperties()['Static Hermes'] === true;
142+
HermesInternal.getRuntimeProperties()['OSS Release Version'];
143143
```
144144

145145
## React 19.1.1

0 commit comments

Comments
 (0)