You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 'shake' |IBGInvocationEventShake| Shaking the device while in any screen to show the feedback form. ||
39
-
| 'button' |IBGInvocationEventFloatingButton| Shows a floating button on top of all views, when pressed it takes a screenshot. ||
40
-
| 'screenshot' |IBGInvocationEventScreenshot| Taking a screenshot using the Home+Lock buttons while in any screen to show the feedback form, substituted with IBGInvocationEventShake on iOS 6.1.3 and earlier. | √ |
41
-
| 'swipe' |IBGInvocationEventTwoFingersSwipeLeft| Swiping two fingers left while in any screen to show the feedback form. | √ |
42
-
| 'none' |IBGInvocationEventNone| No event will be registered to show the feedback form, you'll need to code your own and call the method invoke. ||
38
+
| 'shake' |InstabugInvocationEvent.SHAKE| Shaking the device while in any screen to show the feedback form. ||
39
+
| 'button' |InstabugInvocationEvent.FLOATING_BUTTON| Shows a floating button on top of all views, when pressed it takes a screenshot. ||
40
+
| 'screenshot' |InstabugInvocationEvent.SCREENSHOT_GESTURE| Taking a screenshot using the Home+Lock buttons while in any screen to show the feedback form, substituted with IBGInvocationEventShake on iOS 6.1.3 and earlier. | √ |
41
+
| 'swipe' |InstabugInvocationEvent.TWO_FINGER_SWIPE_LEFT| Swiping two fingers left while in any screen to show the feedback form. | √ |
42
+
| 'none' |InstabugInvocationEvent.NONE| No event will be registered to show the feedback form, you'll need to code your own and call the method invoke. ||
43
43
Like the token, the value itself can be provided, or you can give an object with values according to platforms using the same syntax as above.
44
44
45
45
The final parameter to the activate method (besides success and error callback functions) is an optional object containing properties to set a variety of configurations. None of these configurations are required. See the table below for their specifications.
@@ -107,7 +107,7 @@ After you've initialized Instabug, you can call a variety of other methods on th
107
107
| addFile*| Uploads file along upcoming reports | Path to desired file on device - can't use path of file relative to your application files. Can be specified as a string or an object with properties by platform. | √ | √ |
108
108
| addLog*| Appends a log message to Instabug internal log. These logs are then sent along the next uploaded report. All log messages are timestamped. Logs aren't cleared per single application run. If you wish to reset the logs, use clearLog(). Note: logs passed to this method are NOT printed to Logcat. | any string | √ | √ |
| changeInvocationEvent | Changes the event used to invoke Instabug SDK | 'shake', 'button', 'screenshot', 'swipe', 'pan', or 'none' (see first table on page) | √ | √ |
110
+
| changeInvocationEvent | Changes the event used to invoke Instabug SDK | 'shake', 'button', 'screenshot', 'swipe', or 'none' (see first table on page) | √ | √ |
0 commit comments