(Note: I want to test it on android)
Hi,
I have an application in react native and a similar application made with flutter. I want to profile / test it and see cpu usage, check when they drop frames, etc.
I know that applications in debugmode are worse in performance. So I thought I have to test these two applications in release mode, because I dont know how much debugmode hold these applications back. But from my understanding android profiling does not work in release mode (don't know about systrace, still have some problems with it).
So my question, how do I compare these 2 apps? Is there a way to do with release builds? Or should I test and compare it with a debug build?
[Edit] I read that flutter has a profile build which builds closely to a release build, is running in debugmode and turning off dev mode in react-native about the same?