Recognito
  • About RECOGNITO
  • Face Recognition SDK
    • Performance Overview
    • Integration Guide
      • Linux
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Windows
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Android
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • iOS
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Flutter
        • Installation
        • API Reference
        • Licensing
        • Sample Application
  • Face Liveness Detection SDK
    • Performance Overview
    • Integration Guide
      • Linux
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Windows
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Android
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • iOS
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Flutter
        • Installation
        • API Reference
        • Licensing
        • Sample Application
  • ID Document Recognition SDK
    • Performance Overview
    • Integration Guide
      • Linux
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • Android
        • Installation
        • API Reference
        • Licensing
        • Sample Application
      • iOS
        • Installation
        • API Reference
        • Licensing
        • Sample Application
  • ID Document Liveness Detection SDK
    • Performance Overview
    • Integration Guide
      • Linux
        • Installation
        • API Reference
        • Licensing
        • Sample Application
  • License Option
  • How to implement 1:N identification with RECOGNITO SDK
  • Contact & Support
Powered by GitBook
On this page
  • Get your Application ID
  • Request License
  • Activate SDK
  1. Face Liveness Detection SDK
  2. Integration Guide
  3. Android

Licensing

Click Here to get details about RECOGNITO license option

License Option

Get your Application ID

To activate SDK, you have to first get your Application ID in your build.gradle file:

 android { 
     namespace 'com.bio.facerecognition' 
     compileSdk 33 
  
     defaultConfig { 
         applicationId "com.bio.facerecognition" 
         minSdk 24 
         targetSdk 33 
         versionCode 4 
         versionName "1.3" 

Request License

Share your Application ID with us for license key.

Contact us

Activate SDK

Activate the SDK with license key. Should be called before using of any other functions.

MainActivity.kt
import com.bio.facesdk.FaceSDK

val license_str = application.assets.open("license").bufferedReader().use{ 
    it.readText() 
} 
  
var ret = FaceSDK.setActivation(license_str) 
  
if (ret == FaceSDK.SDK_SUCCESS) { 
    ret = FaceSDK.init(assets) 
} 

PreviousAPI ReferenceNextSample Application

Last updated 7 months ago