Welcome to the
WalkMe Help Center
Please log in to continue
Select your data center
Please log in to continue
This article explains how to install and update the WalkMe Android SDK using Gradle Build Tool.
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
implementation ('com.github.abbiio:androidsdk:SDK_VERSION_NUMBER')
testOptions { unitTests.all { jvmArgs '-noverify' } }
gradle installimport abbi.io.abbisdk.ABBI;
// Java:
ABBI.start("<YOUR_APP_KEY>", "<YOUR_APP_SECRET>", getApplication());
// Kotlin:
ABBI.start("<YOUR_APP_KEY>", "<YOUR_APP_SECRET>", application);
ABBI SDK
You're done! The WalkMe Console should now identify the app and confirm the integration.
You must re-build your project, after which Gradle will fetch the last SDK version from jitpack. Find the latest Android SDK version here.