Comment on page
Get Started
Check out the example project at https://github.com/sybrin-innovations/Sybrin.SDK.Samples/tree/main/android/identity
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.
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.16.42'
}
To see which documents the Sybrin Android Identity SDK supports go have a look at our Supported Documents list.
Last modified 23d ago