Skip to main content

Android

The Gleap SDK for Android is the easiest way to integrate Gleap into your apps. Communicate with your users directly and build better software by discovering their everyday pain points. Gleap is your all-in-one customer feedback tool for apps and websites.

For the SDK to work, you need an API key, which you can get for free at app.gleap.io.

🏗 Installation

Gleap is distributed through the maven. Add the following to you build.gradle (Module: app).

implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '13.6.1'

The Gleap SDK is now almost successfully installed. Let's carry on with the initialization 🎉

👷‍♂️ Initialize & configure the SDK

Open your preferred development tool and add the following code to your main activity (typically MainActivity.java).

import io.gleap.Gleap;

These two includes are everything you need.

@Override
protected void onCreate(Bundle savedInstanceState) {
....
Gleap.initialize("YOUR_API_KEY", this);
}

You are all set now! Run the app and report your first bug 🎉.

info

Get your API key here.

🤝 Need help?

We are here to help, simply drop us an email at [email protected].