HomeDocumentationAPI Reference
Getting StartedAPI ReferenceHelp CenterVideo Tours

Enable or Disable App Launch

Instabug 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);