Flipper Hermes debugger未显示
请问怎样才能让他正常显示呢?
react-native:0.62.2(从0.61更新到0.62.2)
https://reactnative.dev/docs/hermes
错误消息:
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.


发布于 2021-02-03 18:46:05
在android/app/build.gradle文件中
project.ext.react = [
entryFile: "index.js",
enableHermes: true
]这在proguard-rules.pro文件中
-keep class com.facebook.hermes.unicode.** { *; }
-keep class com.facebook.jni.** { *; }和
$ cd android && ./gradlew clean
对我很管用
https://stackoverflow.com/questions/62219074
复制相似问题