socure-inc / socure-docv-sdk-android

Android library for Socure's Document Verification Product - DocV
Other
6 stars 2 forks source link
andorid andorid-app android-s fraud-detection fraud-prevention identity socure

Predictive DocV Android SDK v5

Learn how to integrate the Predictive Document Verification (DocV) Android SDK into your Android application.

Minimum Requirements

Before getting started, check that your development environment meets the following requirements:

The DocV Android SDK v5 is compiled with:

Note: Auto Capture feature requires Android SDK Version 28 (OS Version 9.0) and later with at least 3 GB of RAM. If the device does not meet these requirements, only the manual capture feature will be available.

Integration

To add the DocV SDK to your application, include the Socure DocV SDK Maven repository in your build.gradle file at the end of the allprojects > repositories section:

allprojects {
        repositories {
            ...
            maven { url 'https://sdk.socure.com' }
        }
    }

Note: SDK distribution from jitpack.io is deprecated

In your module level build.gradle file, add the following Socure DocV SDK dependency and replace x.y.z with the DocV Android SDK version:

 dependencies {
      implementation 'com.socure.android:docv-capture:x.y.z'
 }

Configuration and integration

For instructions on how to configure the SDK, see the Android SDK documentation on DevHub.