'Flipper: Flipper Hermes debugger does not show
Flipper Hermes debugger
does not show
I would like to ask how to make him display normally?
react-native:0.62.2 (Update from 0.61 to 0.62.2)
https://reactnative.dev/docs/hermes
error message:
Metro is connected but no Hermes apps were found.
Open a React Native screen with Hermes enabled to connect. Note: you may need to reload the app in order to reconnect the device to Metro.
Solution 1:[1]
Following this in android/app/build.gradle file
project.ext.react = [
entryFile: "index.js",
enableHermes: true
]
And this in proguard-rules.pro file
-keep class com.facebook.hermes.unicode.** { *; }
-keep class com.facebook.jni.** { *; }
And
$ cd android && ./gradlew clean
Worked for me
Solution 2:[2]
In my case it was showing screen mentioned at https://github.com/facebook/flipper/issues/1520
I found out that it was happening due to company VPN. I disconnected the VPN whenever I had to debug and it worked normally.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Diwakar Shukla |
Solution 2 | Yuvraj Patil |