Skip to content

Latest commit

 

History

History
81 lines (58 loc) · 3.96 KB

feature_app_launch.md

File metadata and controls

81 lines (58 loc) · 3.96 KB

Feature - App Launch

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.

How it works

Cold launch

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:

  1. Time to Initial Display (TTID) - the time taken from when the app was launched to when the first frame is displayed.
  2. 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:

  1. The time when the app was launched.
  2. 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.

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:

  1. Get the decor view by registering onContentChanged callback on the first Activity.
  2. Get the next draw callback by registering OnDrawListener on the decor view.
  3. Post a runnable in front of the next draw callback to record the time just before the first frame was displayed.

Warm launch

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.

Hot launch

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.

Data collected

Checkout the data collected by Measure for Cold Launch, Warm Launch and Hot Launch sections respectively.

Further reading