> For the complete documentation index, see [llms.txt](https://docs.caf.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.caf.io/caf-sdk/android/standalone-modules/caffaceliveness/faq_caf_face_liveness_sdk.md).

# FAQ

***

## **1. What is the CAF Face Liveness SDK and what is its main functionality?**

**Answer:**

The CAF Face Liveness SDK provides a solution for verifying whether the face captured by a mobile device's camera is from a live person and not a photo, video, or other forms of spoofing. It’s widely used in scenarios where identity verification is crucial, such as KYC (Know Your Customer), fraud prevention, and secure access.

***

## **2. What are the system requirements for the CAF Face Liveness SDK on Android?**

**Answer:**

The SDK supports Android API 26 and above, ensuring compatibility with modern Android devices. Your Android project should use a **minimum SDK version of 26**.

For more requirement details, such as Kotlin and Gradle version, please refer to the [Requirements section](/caf-sdk/android/standalone-modules/caffaceliveness/requirements.md).

***

## **3. What permissions are required to use the SDK?**

**Answer:**

The SDK requires the following permissions:

* Camera (`android.permission.CAMERA`)
* Internet (`android.permission.INTERNET`)

Ensure these are added to your `AndroidManifest.xml` and handle permission requests in your app appropriately for Android versions that require runtime permission requests.

***

## **4. How do I integrate the CAF Face Liveness SDK into my Android project?**

**Answer:**

To integrate the SDK:

1. Add the SDK dependencies to your `build.gradle` file.
2. Configure necessary permissions for the camera and internet access in your app’s `AndroidManifest.xml`.
3. Initialize the SDK in your application’s lifecycle, typically within `onCreate()` of your main activity.

For detailed instructions, please refer to the [Gradle setup section](/caf-sdk/android/standalone-modules/caffaceliveness/gradle.md).

***

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

**Answer:**

The current version of the SDK is regularly updated. You can find the latest version information, including changelogs and version-specific details, [here](/caf-sdk/android/standalone-modules/caffaceliveness/current-version.md).

***

## **6. How do I start the Face Liveness verification process in my app?**

**Answer:**

To start the liveness check, follow these steps:

1. Build the liveness session using the SDK’s builder.
2. Start the liveness activity.
3. Capture the result in the activity’s callback.

For more details on how to initiate the process, refer to the [Start SDK section](/caf-sdk/android/standalone-modules/caffaceliveness/start-sdk.md).

***

## **7. Can the SDK be customized to use reverse proxy URLs?**

**Answer:**

Yes, the SDK offers authentication and liveness URL customization options through the builder interface. These advanced features can be explored in the [Advanced Features section](/caf-sdk/android/standalone-modules/caffaceliveness/advanced_features.md).

***

## **8. What are the typical errors or issues that could occur, and how can I troubleshoot them?**

**Answer:**

Some common errors include:

* **Camera permission not granted**: Ensure your app requests the necessary permissions at runtime.
* **SDK initialization failure**: Check your Gradle setup and ensure the SDK is properly initialized in the app lifecycle.
* **Network errors**: Ensure the device has an active internet connection for the liveness check to succeed.

For more troubleshooting details, refer to the [References section](/caf-sdk/android/standalone-modules/caffaceliveness/references.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.caf.io/caf-sdk/android/standalone-modules/caffaceliveness/faq_caf_face_liveness_sdk.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
