Larney
Larney

Reputation: 1684

React-Native android: Debugging options?

I keep receiving a 401 unauthorised response from my android application. When I use the remote debugging from the emulator I am unable to view the network requests.

Is it possible to view network requests from the emulator's remote debugger? If not what options do I have?

Upvotes: 1

Views: 257

Answers (1)

Carlos Quiroga
Carlos Quiroga

Reputation: 1071

For Android you can execute in console this adb logcat *:S ReactNative:V ReactNativeJS:V.

This is the doc https://facebook.github.io/react-native/docs/debugging.html.

Upvotes: 1

Related Questions