What is the best way to measure the performance of...
# android
s
What is the best way to measure the performance of a composable and get the data from the user base using Firebase traces (and not just tracing on our own device(s)) ? The main question here is about where to start the trace and where to stop it. Posted on #compose earlier but did not get any response.
👀 1
d
Hi, I’m sorry I don’t know answers. But you can try stack overflow if you not get any response here.!!
s
@DINESH S No worries, thanks. I've already tried searching about this.
@Denys Kravchenko I have read this earlier, it's mainly about checking the performance on the development system. What I actually want is tracing data from the actual user base.
What we have figured out till now - We can start tracing in the beginning of the composable and then put the stop trace call inside
LaunchedEffect
. It is expected that LaunchedEffect would be triggered after the compose drawing phase is complete.
Would be great to know others' thoughts on this.