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.
Instabug.trackUserSteps = false
Instabug.trackUserSteps = NO;
Instabug.setTrackingUserStepsState(Feature.State.DISABLED);
Instabug.setTrackingUserStepsState(Feature.State.DISABLED)
Instabug.setTrackUserSteps(false);
//iOS
Instabug.TrackUserSteps = true;
//Android
new Instabug.Builder(this, "ANDROID_APP_TOKEN")
.SetInvocationEvent(InstabugInvocationEvent.Shake)
.SetTrackingUserStepsState(Feature.State.Disabled)
.Build();