We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This wiki is the home for all documentation.
Use the sidebar on the right 👉 to navigate to various documentation topics for more specific information.
It's as easy as "Get ready, Get set, Go".
Adding Instabug to your dependencies (Getting ready)
Grab it via Gradle:
implementation 'com.instabug.library:instabug:9.0.5'
Initialising Instabug (Getting set)
In your Application class add the following:
Application
@Override public void onCreate() { super.onCreate(); // ... new Instabug.Builder(this, "<YOUR_APP_TOKEN>") .setInvocationEvents(InstabugInvocationEvent.FLOATING_BUTTON, InstabugInvocationEvent.SHAKE, InstabugInvocationEvent.SCREENSHOT, InstabugInvocationEvent.TWO_FINGER_SWIPE_LEFT) .build(); // ... }
Go! 🚀
Using Instabug
Miscellaneous