IDScan.net
Search Results for

    Show / Hide Table of Contents

    Facial Recognition SDK for Android

    Requirements

    • Android Gradle plugin 3.6.* or higher;
    • Android SDK version 21 or higher;
    • Kotlin version 1.3.* or higher;
    • Kotlin Standard Library JDK 8 extension version 1.3.* or higher;
    • Dagger by Google version 2.27 or higher;
    • Device with 64-bit ARMv8-A based CPUs or 32-bit ARM-based CPUs.

    Setup

    1.1. Add idscan-public maven repository to the project build.gradle file.

    allprojects {
        repositories {
            ...
            maven {
                url 'https://www.myget.org/F/idscan-public/maven/'
            }
            ...
        }
    }
    

    1.2. Add the following to the module build.gradle file:

    1.2.1. For devices with 64-bit ARMv8-A based CPUs:

    dependencies {
        ...
        implementation 'net.idscan.facesdk.android:facesdk-arm64-v8a:1.0.1'
        ...
    }
    

    1.2.2. For devices with 32-bit ARM-based CPUs:

    dependencies {
        ...
        implementation "net.idscan.facesdk.android:facesdk-armeabi-v7a:1.0.1"
        ...
    }
    
    Back to top IDScan.net IDScan.net GitHub