By default, user steps are collected by the SDK. These are all the steps the user has done up to the latest report. This feature can be disabled using this API.
Luciq.trackUserSteps = false
Luciq.trackUserSteps = NO;
Luciq.setTrackingUserStepsState(Feature.State.DISABLED);
Luciq.setTrackingUserStepsState(Feature.State.DISABLED)
Luciq.setTrackUserSteps(false);
//iOS
Luciq.TrackUserSteps = true;
//Android
new Luciq.Builder(this, "ANDROID_APP_TOKEN")
.SetInvocationEvent(LuciqInvocationEvent.Shake)
.SetTrackingUserStepsState(Feature.State.Disabled)
.Build();