Skip to content
Anwar El Wakil edited this page Nov 27, 2020 · 17 revisions

In-Depth Documentation

This wiki is the home for all documentation.

Use the sidebar on the right 👉 to navigate to various documentation topics for more specific information.

Getting Started

It's as easy as "Get ready, Get set, Go".

  1. Adding Instabug to your dependencies (Getting ready)

    Grab it via Gradle:

    implementation 'com.instabug.library:instabug:9.0.5'
  2. Initialising Instabug (Getting set)

    In your Application class add the following:

                @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();
                    // ...
                }
  3. Go! 🚀

Using Instabug

Miscellaneous

Clone this wiki locally