Reputation: 603
I am using react-native 0.52.0 and react- 16.2.0 . My react-native application runs slowly. I want to optimize its performance. Can anyone tell me what are the ways in which we can make react native app faster and how to measure its performance and memory usage? Is there any tool to measure its overall performance
Upvotes: 8
Views: 15145
Reputation: 151
You can use Android Studio Profiler to monitor memory usage on Android. Take into account that you will need Android 10 for the profileable tag in Android Manifest to work.
Upvotes: 0
Reputation: 692
1) (reactotron) https://github.com/infinitered/reactotron
It streams to you information about your app’s state, API calls, benchmarks, exceptions, and other stuff.
2) https://facebook.github.io/react-native/docs/performance.html
This page contains all you need to check for performance in the app.
Upvotes: 6