Enable or Disable Auto UI Trace
API reference for enabling or disabling automatic UI trace capture in Luciq. UI hangs are collected out of the box and can be disabled.
APM.setAutoUITraceEnabled(true)LCQAPM.UIHangsEnabled = NO;APM.setUIHangEnabled(boolean disabled);APM.setUIHangEnabled(boolean disabled)// Enable
APM.setAutoUITraceEnabled(true);
// Disable
APM.setAutoUITraceEnabled(false);// Enable Auto UI Traces
APM.setAutoUITraceEnabled(true);
// Disable Auto UI Traces
APM.setAutoUITraceEnabled(false);Last updated