Biometrid Android SDK
3.0.2
3.0.2
  • Introduction
  • Standard SDK
    • Initialization
    • Requirements
    • Enums
    • Installation
      • Gradle
    • Process Management
      • Create Process
      • Previous Step
      • Get Step State
    • Update Step Management
      • Update Step
    • Liveness Validation
    • Photo Capture
      • Configurations
    • Auto Capture
      • Configurations
    • NFC Passport Reader
      • Scan result
      • Configurations
    • Biometric Authentication
    • Device Location
    • Presence Detection
      • Configurations
  • Full SDK
    • Initialization
    • Requirements
    • Installation
      • Gradle
    • Start
    • Photo Capture
    • Liveness Validation
    • Callbacks
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Full SDK

Callbacks

This section contains the necessary methods to implement the InterfaceCallback

Called by initialize method. Use this to observe if SDK was correctly initialized:

public void initializeCallback(boolean status, @Nullable Errors error)

Use this to observe if a process was correctly created :

public void processCreated(String processId)

Use this to observe if a process was correctly closed:

public void processFinished()

Use this to observe when the SDK start:

public void interfaceStarted()

Use this to observe if SDK is closed:

public void interfaceClosed()
PreviousLiveness Validation

Was this helpful?