HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.1. Click to read the latest docs for v12.0.0.

Showing Instabug

This section covers how to set the user action that initializes Instabug, as well as how to customize what appears to your app users after the SDK is shown for Android apps.

By default, Instabug is shown when the device is shaken. This can be customized to several other modes that show the SDK. You can also show the SDK manually from a custom gesture or a button you add to your app.

Invocation Events

You can set the SDK to be shown when your users do one or more of the following actions:

  • Shake device
  • Take a normal screenshot
  • Tap on a floating button shown above your app's UI
  • Do a two-finger swipe from right to left
  • None (manual showing)
1596

How to show Instabug

You have the option to set one or multiple invocation events. To customize the invocation event, pass one of the values of the InstabugInvocationEvent enum when starting the SDK.

new Instabug.Builder(this, "APP_TOKEN")
	.setInvocationEvents(InstabugInvocationEvent.SHAKE, InstabugInvocationEvent.SCREENSHOT)
	.build();

You can find the possible invocation events below.

NONE
SHAKE
FLOATING_BUTTON
SCREENSHOT_GESTURE
TWO_FINGER_SWIPE_LEFT

Floating Button

If you are using the floating button, you can set its default position as explained here.

None

Use the "none" event if you want to show the SDK manually in order to prevent the SDK from being invoked through the other events.

Shaking Threshold

If you are using the shaking gesture as your invocation event, you can set how sensitive the device should be to the shaking. The default value is 650. The higher the value, the less sensitive the device will be to shaking.

BugReporting.setShakingThreshold(800);

Changing the Invocation Event

If you want to change the invocation event to any of the other supported events, you can do so at runtime​ as shown below.

BugReporting.setInvocationEvents(InstabugInvocationEvent.SHAKE, InstabugInvocationEvent.SCREENSHOT)

Manual Showing

If you want to show the SDK manually, use the show method.

Instabug.show();

Changing the Invocation Mode

By default, when the Instabug SDK is invoked, a popup appears to your app users that asks "How can we help you?" with options for them to report a bug ("Report a problem"), share feedback ("Suggest an improvement"), or send you a message ("Ask a question") if In-App Chat is supported in your plan.

1440

The Prompt Options menu appears when Instabug is shown in your app.

Instead of showing this Prompt Options menu that lets your users choose what they want to do, you can skip this step and take users directly to the bug or feedback reporting flow or chat pages.

For bug and feedback reporting, you can also specify invocation options as described here.

// Compose a new bug report
BugReporting.show(BugReporting.ReportType.BUG)
// Compose a new feedback
BugReporting.show(BugReporting.ReportType.FEEDBACK)
// Compose a new chat
Chats.show();
// Show the perevious chats list
Replies.show();

What’s Next

Learn how to customize the welcome message to your users or maybe even report your first bug.