Enable or Disable App Launch
API reference for enabling or disabling app launch tracking in Luciq. Launch time is collected by default and can be turned off in code.
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);Last updated