Hi guys what debugging tools you use for react native?
i also want to get ram usage of the app what is your recommended app?
I like to use Flipper which is a great debugging tool for react-native. For analyising network requests made by your application, Flipper's network plugin is very useful. For Android there exists a LeakCanary Plugin that enables support for LeakCanary, an open source memory leak detection library for Android, within Flipper.
For monitoring memory usage, I usually use XCode for iOS and Android Studio for Android directly.
Xcode, choose Xcode > Open Developer Tool > Instruments.For performance profiling specifically there is a good documentation in the official react-native documentation.