Get Started

You can use the Sybrin Identity SDK to capture data on various Identity documents from a wide range of countries. Implementing the SDK is as easy as importing it into your dependencies list within you project. In this section we will focus on how to get the Sybrin Identity SDK into your project.

Before you begin

In your project-level build.gradle file, make sure to include the following maven tag inside the repositories tag.

build.gradle
allprojects {
    repositories {
          maven {
            url = 'https://maven.pkg.github.com/sybrin-innovations/Sybrin-Android-SDK-Identity'
            credentials {
                username "sybrin-innovations"
                password "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"
            }
        }
    }
}   

Add the following compile options to android tag within the modules app-level build.gradle file.

app/build.gradle
android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

Add the dependency for the Sybrin Android Identity SDK to your modules app-level build.gradle file under dependencies

build.gradle
dependencies {
    implementation 'com.github.sybrin-innovations:sybrin-android-sdk-identity:1.17.0'
}

Done

You are now ready and setup to use Sybrin Identity! Check out all the Identity Features

To see which documents the Sybrin Android Identity SDK supports go have a look at our Supported Documents list.