Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Network section not showing in flipper debugger app

I have installed Flipper for debugging my react-native app but not able to see network section.

enter image description here

Thanks in Advance

like image 325
Kshitij Avatar asked Apr 26 '20 16:04

Kshitij


People also ask

How do I use flipper debugging?

To start debugging, open the folder desktop of the Flipper repository in VSCode. Execute yarn start in a terminal to launch Flipper in development mode. Select tab Debug and Run and run task Attach to Running Renderer . By default, this task is set as the first one, so you can just press F5 to run it.

How do you use flipper React Native for debugging?

To use Flipper, you need to add the mobile SDK to your app. If you are using React Native 0.62 or higher, this is largely done automatically for you. For Android, start the Flipper Desktop application, and begin your project using yarn android. Your application will appear in Flipper.


1 Answers

To add functionality like this you need to add the plugin on the native side. This requires changes to both the Android and iOS side of things to get it hooked in. This is a link to their docs on adding this: https://fbflipper.com/docs/setup/network-plugin

like image 59
ctchristmas Avatar answered Oct 11 '22 20:10

ctchristmas