LogoLogo
Useful links
  • Home
  • Product guides
  • API
  • SDKs
  • Overview
  • First steps
  • ANDROID
    • Getting Started with the SDK
    • Standalone Modules
      • Document Detector
        • Release Notes
        • Current Version
        • Requirements
        • Gradle Dependencies
        • Gradle Source Code
        • Setting up the SDK
          • Setting properties
          • Capture Stages
          • Messages Settings
          • Customization
          • Security Settings
          • Detection Steps
          • Upload Mode
          • Advanced Settings
            • Proxy configuration
            • Preview configuration
        • Start Document Detection
        • Source Code
        • Google security form
        • Reduce SDKs size
        • SDKs response
        • References
        • FAQ
      • Face Liveness
        • Release Notes
        • Current Version
        • Requirements
        • Gradle Dependencies
        • Gradle Source Code
        • SDK Lifecycle
        • Building the SDK
        • Start Liveness Verification
        • Source Code
        • References
        • Advanced Features
        • FAQ
      • Face Authenticator
        • Release Notes
      • Smart Auth
        • Release Notes
        • Current Version
        • Requirements
        • Gradle Dependencies
        • Gradle Source Code
        • Permissions
        • SDK Lifecycle
        • Building the SDK
        • Start Smart Authentication
        • Source Code
        • References
        • FAQ
      • Face Liveness (deprecated)
        • Release Notes
  • iOS
    • Getting Started with the SDK
    • Standalone Modules
      • Document Detector
        • Release Notes
        • Current Version
        • Requirements
        • Installing the SDK
        • Setting up the SDK
          • Setting properties
          • Messages Settings
          • Customization
          • Detection Steps
          • Upload Mode
          • Advanced Settings
            • Proxy configuration
            • Preview configuration
        • Start Document Detection
        • References
        • FAQ
      • Face Liveness
        • Release Notes
        • Installation
        • Current Version
        • Requirements
        • SDK Lifecycle
        • Building the SDK
        • Start Liveness Verification
        • Source Code
        • References
        • FAQ
      • Face Authenticator
        • Release Notes
        • Installation
        • Current Version
        • Requirements
        • Building the SDK
        • Start the SDK
        • References
        • FAQ
      • Smart Auth
        • Release Notes
        • Installation
        • Current Version
        • Requirements
        • SDK Lifecycle
        • Building the SDK
        • Start Smart Authentication
        • Source Code
        • References
        • FAQ
      • Face Liveness (deprecated)
        • Release Notes
  • REACT NATIVE
    • Standalone Modules
      • Document Detector
        • Release Notes
        • Current Version
        • Requirements
        • Installation
        • Hooks
        • Start Document Verification
        • Source Code
        • TypeScript References
        • Customizing Style
        • FAQ
      • Face Liveness
        • Release Notes
        • Current Version
        • Requirements
        • Installation
        • Hooks
        • Start Liveness Verification
        • Source Code
        • TypeScript References
        • FAQ
      • Face Authenticator
        • Release Notes
        • Current Version
        • Requirements
        • Installation
        • Hooks
        • Start Authentication Verification
        • Source Code
        • TypeScript References
        • FAQ
      • Smart Auth
        • Getting started
        • Release notes
        • Using Native Modules
          • Requirements
          • Gradle Source Code
          • Podfile Source Code
          • Native Module Android
          • Native Module iOS
          • Import Native Modules
          • Source Code
          • TypeScript References
          • FAQ
        • Using Expo Modules
          • Requirements
          • Create Local Expo Module
          • Gradle Source Code
          • Podspec Source Code
          • Native Module Android
          • Native Module iOS
          • Import Expo Modules
          • Source Code
          • TypeScript References
          • FAQ
  • WEB (JAVASCRIPT)
    • Standalone Modules
      • Document Detector
        • Getting started
        • SDK builder options
          • Analytics
          • Appearance
          • Messages
        • SDK methods
        • Event listeners
        • Customization
        • Release notes
      • Face Liveness
        • Customization
        • Release notes
      • Face Authenticator
        • Customization
        • Release notes
      • Smart Auth
        • SDK errors
        • Customization
        • Release notes
LogoLogo

2025 © Caf. - All rights reserved

On this page
  • 1. What is the CAF SmartAuth SDK and what is its main functionality?
  • 2. What are the system requirements for the CAF SmartAuth SDK on Android?
  • 3. What permissions are required to use the SDK?
  • 4. How do I integrate the CAF SmartAuth SDK into my Android project?
  • 5. What is the current version of the SDK, and where can I find version-specific details?
  • 6. How do I start the authentication process using the SDK?
  1. ANDROID
  2. Standalone Modules
  3. Smart Auth

FAQ

Last updated 2 months ago


1. What is the CAF SmartAuth SDK and what is its main functionality?

Answer:

The CAF SmartAuth SDK provides a customizable solution for user authentication through various methods, including live facial verification, SMS, and email. It’s ideal for enhancing security in applications requiring user authentication, particularly for scenarios like user onboarding, secure access, and identity verification.


2. What are the system requirements for the CAF SmartAuth SDK on Android?

Answer:

The SDK is compatible with Android API 26 and above, supporting a wide range of modern Android devices. Ensure your Android project has a minimum SDK version of 26.

For further requirements, including specific versions of Kotlin and Gradle, refer to the .


3. What permissions are required to use the SDK?

Answer:

The SDK requires the following permissions:

  • Camera (android.permission.CAMERA) for facial verification.

  • Internet (android.permission.INTERNET) for remote verification and communication.

  • Fine Location (android.permission.ACCESS_FINE_LOCATION)

  • Course Location (android.permission.ACCESS_COARSE_LOCATION)


4. How do I integrate the CAF SmartAuth SDK into my Android project?

Answer:

To integrate the SDK:

  1. Include the SDK dependencies in your build.gradle file.

  2. Configure the necessary permissions for camera and internet in your AndroidManifest.xml.

  3. Initialize the SDK in your application’s lifecycle, typically in the onCreate() method of your main activity.


5. What is the current version of the SDK, and where can I find version-specific details?

Answer:


6. How do I start the authentication process using the SDK?

Answer:

To initiate the authentication process:

  1. Configure a SmartAuth session with the desired authentication policies (e.g., face verification, SMS, email).

  2. Start the session using the SDK’s builder.

  3. Capture and handle the results in your activity callback.

Add these permissions to your AndroidManifest.xml, and handle runtime permission requests as necessary for Android versions that require them. Guide to handle location runtime permissions .

Refer to the for step-by-step integration details.

The SDK version is periodically updated. For the latest version information, release notes, and changelogs, check .

For more details, see the .

Requirements section
here
Gradle setup section
here
Authentication Setup section