Questions tagged [react-native-debugger]

The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools.

The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools

114 questions
3
votes
2 answers

Unable to use react-native-debugger after updating react-native

React Native Debugger app version: v0.8.1 React Native version: 0.57.3 I am getting this error It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function It was…
Kelvin
  • 2,218
  • 4
  • 22
  • 41
3
votes
1 answer

React Native Debug Error on iOS

I have been developing React Native for a while and I keep updating myself with new release of the framework by creating other new project to test. Currently I face problem when I reload the application in Debug mode on my old version of React…
Ponleu
  • 1,492
  • 12
  • 27
2
votes
1 answer

Incompatible version of react-devtools-core in react-native-debugger@0.13.0

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…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
2
votes
0 answers

How do you debug react-native in 2022?

I'm using expo SDK 45 (the latest at the moment i'm writing this) and it seems remote debugging is not possible with react-native-reanimated 2. I'm not even using this library, but react-navigation's drawer does. And as far as I know, many people…
holyris
  • 171
  • 11
2
votes
0 answers

unable to connect expo react native app to react native debugger

I’ve been trying to connect my Expo React Native app to a React Native debugger so I can see network calls, but it has proved difficult. My developer tools are running on http://localhost:19002, and the metro waiting on…
Vaibhav Verma
  • 937
  • 1
  • 8
  • 25
2
votes
2 answers

Stuck on black screen when activating debug in React-Native

I have a problem with my RN app in my android device (have not tested on iOS yet), as soon as I activate debug on the device, it gets stuck on a black screen. I dont know what part of the code or what setting is causing this, and this is the reason…
showtime
  • 1
  • 1
  • 17
  • 48
2
votes
1 answer

How can I make react native debugger my default on ios

Ive successfully installed Rn Debugger using command brew update && brew install --cask react-native-debugger. However when I bring up the debugger menu on simulator, all I see is the option "Open Debugger" (which I understand is for flipper). I…
james murphy
  • 1,505
  • 5
  • 31
  • 57
2
votes
2 answers

Debugger issue in react native?

I am trying to the attached debugger to the React Native app. I am using the React Native tool extension for React Native debugging. as I am new to React Native I am kind of stuck as I am not able to debug. I am not sure why it's showing 8082 and…
New iOS Dev
  • 1,937
  • 7
  • 33
  • 67
2
votes
1 answer

Usage of React Native Debugger with typescript

To setup React Native debugger we have to declare a composer like this: const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose const store = createStore( rootReducers, composeEnhancers(applyMiddleware(thunk)) ) But…
Luna
  • 467
  • 1
  • 3
  • 11
2
votes
2 answers

React Native Hermes debugging not working (empty sources tab)

I've enabled Hermes for my RN (0.61.4) app and followed RN docs instructions to enable Hermes and debug using Chrome dev tools (https://reactnative.dev/docs/hermes#debugging-hermes-using-google-chromes-devtools). I open the chrome://inspect and I'm…
Yosef
  • 360
  • 5
  • 16
2
votes
1 answer

Can you reload a React Native app from React Native Debugger?

I've just switched from debugging my React Native app in the browser using the console to React Native Debugger. In the browser, there is a button to reload the app which is very useful and something that I need to do a lot. Now using React Native…
Mr. Robot
  • 1,334
  • 6
  • 27
  • 79
2
votes
2 answers

Crash when trying to connect to react-native-debugger or Chrome

After upgrading our react-native project to react-native 0.59.10 I am experiencing a crash when running the Android version. The app builds, installs and runs fine, but it crashes when trying to connect to a remote debugger (react-native-debugger or…
dudeinthemirror
  • 537
  • 4
  • 15
2
votes
1 answer

React native debugger - how to save breakpoints when refresh app

I set breakpoint using the "Sources" tab within the Chrome debugging console (within React Native Debugger)....but when I double-press R to refresh app the breakpoints dissapear. Anyone know how to persist breakpoints on refresh? Thanks
james murphy
  • 1,505
  • 5
  • 31
  • 57
2
votes
0 answers

React Native debugger - breakpoints not being hit in code that executes soon after start

I'm debugging React Native in Chrome, app is running on an Android emulator on localhost. Breakpoints in componentDidMount() are not being hit, but if I wrap some code in a setTimeout() to delay execution, the debugger hits the breapoint and pauses…
Mihail Kostira
  • 510
  • 7
  • 10
2
votes
2 answers

How start remote debug on the very first run in react native

How start remote debug on the very first app run in react native? I use developer menu to start Open debugger and the app reloads so it's not possible to debug code that occurs on a very first run only.
Stanislav Mayorov
  • 4,298
  • 5
  • 21
  • 44