This repository was archived by the owner on Oct 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Home
Mohammed Nagy edited this page Jun 6, 2016
·
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:instabugsupport:2.4.0'or via Maven: (if you're that kind of person
)<dependency> <groupId>com.instabug.library</groupId> <artifactId>instabugsupport</artifactId> <version>2.4.0</version> </dependency>
-
Initialising Instabug (Getting set)
In your
Applicationclass add the following:@Override public void onCreate() { super.onCreate(); // ... new Instabug.Builder(this, "<YOUR_APP_TOKEN>") .setInvocationEvent(IBGInvocationEvent.IBGInvocationEventFloatingButton) .build(); // ... } ``` -
Go!