Installation

In-App Protection SDK for Android is distributed as a Maven artifact in a private artifact repository.

In-App Protection SDK for Android supports Android 6 (SDK version 23) and above.

Personalized Configuration Required.
In order to use In-App Protection SDK for Android, you need a custom configuration and access credentials for both the service and the artifact repository. Contact your sales representative or technical consultant to obtain the necessary prerequisites.

Adding Maven Repository

Add a new Maven repository pointing to Wultra Artifactory:

repositories {
    maven {
        url 'https://wultra.jfrog.io/artifactory/iap-sdk-android/'
        credentials {
            username = wultraArtifactoryUsername
            password = wultraArtifactoryPass
        }
        content {
            includeGroup("com.wultra.android.sdk")
        }
    }
}

Adding Project Dependency

Once you have configured the Maven repository, you can add In-App Protection SDK as a dependency to your Android project:

android {
    dependencies {
        implementation "com.wultra.android.sdk:iap-sdk:${WULTRA_APP_PROTECTION_VERSION}"
    }
}
Last updated on Aug 07, 2026 (14:01) View product

develop

In-App Protection SDK for Android