Get Started

You can use the Sybrin Document Scanner SDK to capture data on various Document documents. 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 Document Scanner 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://jitpack.io'
            credentials { username "jp_vmub3p042oauhd42h7omr48f3v"}
        }
    }
}   

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 Document Scanner SDK to your modules app-level build.gradle file under dependencies

build.gradle
dependencies {
    implementation 'com.github.sybrin-innovations:Sybrin-Android-SDK-DocumentScanner:1.0.7'
}

Done

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

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

Last updated