Skip to main content
The SDK can be added to your Android project using Maven. To configure maven, include the following in your project level build.gradle file:
allprojects {
    repositories {
        google()
        mavenCentral()

        maven {
            url = uri("<maven-repo-link>")

            credentials {
                username = "<your-username>"
                password = "<your-password>"
            }
        }
    }
}
The maven repository link along with the credentials will be provided by email upon request. To add the sdk as a dependency to your app, add the following in your build gradle:
dependencies {
    implementation 'ae.gov.icp.uaekyc:uaekyc-sdk:$sdkVersion' // Replace with the latest version
}