1

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?

1
  • 1
    The question is for another platform I think. Commented Feb 27, 2022 at 21:53

1 Answer 1

2

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.

  1. For iOS: Start your App using XCode and launch Instruments via Xcode, choose Xcode > Open Developer Tool > Instruments.
  2. For Android: Start your App using Android Studio and open the Android memory profiler.

For performance profiling specifically there is a good documentation in the official react-native documentation.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.