I\'d like to view my network requests in React Native to help me debug - ideally in the \'Network\' tab of Chrome\'s devtools.
There are some closed issues about thi
If you have an android phone or emulator,
npx react-native start
Then open the Android Studio.
Open the android
folder of your project as a Android Studio Project.
Click that blue icon which it is Android Profiler
After the Android Profiler start, you can add your app via grey plus icon near the SESSIONS
label
Now you can inspect networking via this tool. You can see triangles that shows your network activity.
Please check this for more info about inspecting network traffic.