1️⃣ Getting started
Prerequisites
<key>NSCameraUsageDescription</key> <string>Keyless needs access to your camera to enroll and authenticate you. Keyless cannot be used without your camera. Please allow camera permissions.</string><key>NSCameraUsageDescription</key> <key>BGTaskSchedulerPermittedIdentifiers</key> <array> <string>YOUR APP IDENTIFIER</string> </array>
Installation
# Keyless Proguard -keep class io.keyless.documentsdk.** {*;} -keepclassmembers class io.keyless.documentsdk.** {*;}dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://dl.cloudsmith.io/YOUR_CLOUDSMITH_TOKEN/keyless/partners/maven/" } } }dependencies { // ... implementation 'io.keyless:keyless-document-sdk:+' }android { // ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } // add the following only if you're using Kotlin kotlinOptions { jvmTarget = "1.8" } }
Initialization
- CategoryParameterDescription
Last updated
Was this helpful?