-
Notifications
You must be signed in to change notification settings - Fork 39
Home
Mohammed Nagy edited this page Feb 27, 2018
·
17 revisions
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:
compile 'com.instabug.library:instabug:4.11.1'
-
Initialising Instabug (Getting set)
In your
Application
class add the following:@Override public void onCreate() { super.onCreate(); // ... new Instabug.Builder(this, "<YOUR_APP_TOKEN>") .setInvocationEvent(InstabugInvocationEvent.SHAKE) .build(); // ... }
-
Go!