For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cold App Launch

API reference for cold app launch tracking with Luciq APM. Measure the time from process creation to first interactive frame for cold starts.

Luciq automatically captures your cold app launch latency; however, you can disable it using the following APIs.

// Disable
APM.coldAppLaunchEnabled = false
// Enable
APM.coldAppLaunchEnabled = true
// Disable
LCQAPM.coldAppLaunchEnabled = NO;
// Enable
LCQAPM.coldAppLaunchEnabled = YES;
APM.setColdAppLaunchEnabled(false);
APM.setColdAppLaunchEnabled(false)

Last updated