You can use this API to adjust the shaking sensitivity. This will allow the device to show the invocation with weaker or stronger shakes in case the shake invocation method is used. The threshold takes floats on iOS and integers on Android..
BugReporting.shakingThresholdForiPhone = 3.0;
BugReporting.shakingThresholdForiPad = 1.0;
LCQBugReporting.shakingThresholdForiPhone = 3.0;
LCQBugReporting.shakingThresholdForiPad = 1.0;
BugReporting.setShakingThreshold(800);
BugReporting.setShakingThreshold(800)
//iOS
BugReporting.setShakingThresholdForiPhone(iPhoneShakingThreshold);
BugReporting.setShakingThresholdForiPad(iPadShakingThreshold);
//Android
BugReporting.setShakingThresholdForAndroid(androidThreshold);
// iOS
BugReporting.setShakingThresholdForiPhone(3.0);
BugReporting.setShakingThresholdForiPad(1.0);
// Android
BugReporting.setShakingThresholdForAndroid(800);
