HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
API Reference

Enable or Disable App Launch

Luciq collects data about your app launch time by default. You can use the following APIs to alter that.

// Enable
APM.setAppLaunchEnabled(true);

// Disable
APM.setAppLaunchEnabled(false);
// Enable Cold App Launch
APM.setColdAppLaunchEnabled(true);

// Disable Cold App Launch
APM.setColdAppLaunchEnabled(false);