I upgraded react-native-debugger
from 0.11.6 to 0.13.0, and when I try to run my app, the debugger logs the error Unsupported Bridge operation "0" An incompatible version of react-devtools-core has been embedded in a renderer like React Native. To fix this, update the react-devtools-core package within the React Native application, or downgrade the react-devtools package you use to open the DevTools UI.
In the documentation for 0.13.0, it says to add the following to my package.json
:
{
"overrides": {
"react-devtools-core": "~4.25.0"
}
}
I checked that this 4.25.0 is the most recent version of react-devtools-core, so I can't do what the error says and upgrade it. How should I approach this?