'React Native 0.66 - Cant open React-Native-Debugger, Flipper is default

I've upgraded to React Native 0.66.
I can open the developer menu but its seems the now flipper is the default choice.
I got only "Open Debugger" - which open Flipper.
I had a "Debug" option that no longer there.

I have issues with Flipper that I could not resolve - How can I use react-native-debugger?

enter image description here



Solution 1:[1]

Seems that Hermes was enabled in my Podfile - once I upgraded to 0.66 it force the use of flipper

Doing hermes_enabled => false in Podfile enable to work with react-native-debugger again:

use_react_native!(:path => config["reactNativePath"], :hermes_enabled => false)

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 chenop