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
0
votes
1 answer

react-native app crashes while I want to run debugger-ui react-native-debbugger

I have started my application and install npm packages using npm install, then as usual I have installed debug version of the application using npx react-native run-android, then started the application with npx react-native start. The works fine…
0
votes
1 answer

react-native-reanimated & react-navigation/drawer dependency error

I'm into a problem that I have already asked the discussions tab in the react-native-reanimated GitHub repository: this is the link in the github repo I have cloned a react-native project and tried to install npm packages using npm install, but I…
0
votes
1 answer

Which react native debugger to download for macos, -arm64, -universal, or -x64?

As I stated in the question, I cannot figure out which debugger to download from here. All I could find was this: Go to the Apple Menu and select “About this Mac”. If you have a Core Duo processor, you have a 32-bit CPU. Otherwise (Core 2 Duo,…
Fotios Tsakiris
  • 1,310
  • 1
  • 18
  • 24
0
votes
0 answers

Why does the Stand-Alone React Native Debugger show an undefined redux state?

I’m using the stand-alone React Native Debugger. It connects, but shows the redux state as undefined. I already tried all versions I found by browsing the internet. This approach is the one that shows better results but has this little problem The…
Rafael
  • 2,413
  • 4
  • 32
  • 54
0
votes
1 answer

Cannot launch react native debugger, react native packager is running

I am trying to console.log in a React Native project but the chrome tools will not load. The iOS emulator shows a warning saying remote debugger is in a background tab but there are no instances of a debugger open.. When I navigate to localhost:8081…
0
votes
1 answer

React-Native downgrade

I tried using react-native-debugger for debugging my application developed in react-native. I found the react-native debugger is not working as my react-native is in version 0.63.4 and the react-native debugger will only support version till 0.62.…
0
votes
1 answer

Expo & ReactNative debugger how to make the state visible?

I have a ReactNative app that was setup with Expo/Typescript. I have downloaded the ReactNativeDebugger. I have made sure that the versions of ReactNativeDebugger (RND) are aligned with ReactNative. Debugger: 0.11.6 ReactNativeVersion: 0.63.2 I…
user7858768
  • 838
  • 7
  • 22
0
votes
1 answer

how to monitor image requests for a react-native app to verify if images are loaded from cache or not (using Charles)

I am trying to monitor the requests for images to verify whether the images are loaded from the ios/android cache or they are still being requested from the backend firebase storage. I am using React Native Debugger by enabling Network Inspect but…
honor
  • 7,378
  • 10
  • 48
  • 76
0
votes
2 answers

React Devtools not showing component in React Native

React Devtools not showing component in React Native. I tested it with Flipper and RNDebugger tools and I still cannot see my components in tree. I am using newest React, Recat Native and devtools. What can be the problem?
Baterka
  • 3,075
  • 5
  • 31
  • 60
0
votes
1 answer

React Native Debugger: why can't I put a breakpoint at this point in my Redux saga?

I have the following code in a Redux saga: function* providersList(action) { yield put(LoadingActionCreators.start(Actions.PROVIDERS_LIST)); yield put(ErrorActionCreators.clear(Actions.PROVIDERS_LIST)); try { const response =…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
0
votes
1 answer

react native debugger on android emulator

i create my app via react-native init and run android emulator and i am trying to debug it via react native debugger. i connect my app to the react native debugger but inside Sources tab i cant see my folders like: src, images, etc. i see all files…
Kaki6876
  • 77
  • 1
  • 6
0
votes
1 answer

How do I manually upgrade a software package from a Github page?

I want to upgrade React Native Debugger from version 0.10.0 to version 0.10.2, but clicking to upgrade when the program itself prompts me isn't working because (as they indicate on their page), there's a bug that prevents this upgrade. People have…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
0
votes
1 answer

React-native fetch Api get response differs from debugging mode and normal mode

I tried to call an https request get method API using the Axios method, from server it responded 200 but on the server-side, the API is not hit. Don't know where the response is coming from, the same API I have tried using post-man, I got 200 status…
Arunkumar K
  • 171
  • 1
  • 4
  • 13
0
votes
1 answer

Rect Devtools Uncaught ReferenceError: chrome is not defined

Im using React Native Debugger (but when using chrome devtools the app doesnt work anyway). Ive never had problems, but today im getting "Uncaught ReferenceError: chrome is not defined" Error when debugger tries to connect to React. Tried…
MazMat
  • 1,904
  • 3
  • 12
  • 24
0
votes
1 answer

React Native Debugger: how to enable auto inspect elements

How do you enable the RN debugger to automatically go to the specific element you just clicked on or navigated to in the simulator ?