Measure tracks the cold, warm and hot app launch along with the time taken for each. No additional code is required to enable this feature.
A cold launch refers to an app starting from scratch. Cold launch happens in cases such as an app launching for the first time since the device booted or since the system killed the app.
There are typically two important metrics to track for cold launch:
- Time to Initial Display (TTID) - the time taken from when the app was launched to when the first frame is displayed.
- Time to Full Display (TTFD) - the time taken from when the app was launched to when the first meaningful content is displayed to the user.
Note
Measuring TTFD is not possible yet, support will be added in a future version.
Meanwhile, Time to Initial Display (TTID) is automatically calculated by recording two timestamps:
- The time when the app was launched.
- The time when the app's first frame was displayed.
The time when app was launched is calculated differently for different SDK versions, we use the most accurate measurement possible for the given SDK version.
- Up to API 24: the uptime when Measure content provider's attachInfo callback is invoked.
- API 24 - API 32: the process start uptime, using Process.getStartUptimeMillis
- API 33 and beyond: the process start uptime, using Process.getStartRequestedUptimeMillis
The time when app's first frame was displayed is a bit more complex. Simplifying some of the steps, it is calculated in the following way:
- Get the decor view by registering onContentChanged callback on the first Activity.
- Get the next draw callback by registering OnDrawListener on the decor view.
- Post a runnable in front of the next draw callback to record the time just before the first frame was displayed.
A warm launch refers to the re-launch of an
app causing an Activity onCreate
to be triggered instead of just onResume
. This requires the system to recreate
the activity from scratch and hence requires more work than a hot launch.
Warm launch is calculated by keeping track of the time when the Activity onCreate
of the Activity being recreated is
triggered and the time when the first frame is displayed. The same method as for cold launch is used to calculate the
time when the first frame is displayed.
A hot launch refers to the re-launch of an
app causing an Activity onResume
to be triggered. This typically requires less work than a warm launch as the system
does not need to recreate the activity from scratch. However, if there were any trim memory events leading to the
certain resources being released, the system might need to recreate those resources.
Checkout the data collected by Measure for Cold Launch, Warm Launch and Hot Launch sections respectively.