> 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/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/installation.md).

# Instalação

Links rápidos: [Visão geral](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite.md) | [Compilando o SDK](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/builder.md) | [Iniciar verificação de vivacidade](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/start-sdk.md) | [Personalização da interface](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/ui-customization.md) | [Instalação](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/installation.md) | [Versão atual](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/current-version.md) | [Requisitos](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/requirements.md) | [Código-fonte](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/source-code.md) | [Referência de resultados](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/result-reference.md) | [Notas da versão](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/release-notes.md) | [Perguntas frequentes](/caf-sdk/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/faq_caf_face_liveness_sdk.md)

Para integrar o **SDK CafFaceLivenessLite** ao seu projeto iOS, use o Swift Package Manager (SPM) ou o CocoaPods.

## Requisitos

* Versão do iOS: 15.0 ou superior
* Versão do Xcode: 26.0 ou superior
* Versão do Swift: 6.3 ou superior
* CAF Mobile Token: um mobileToken válido

## Instalação

### Swift Package Manager (SPM)

1. Abra seu projeto no Xcode.
2. Vá para `Arquivo` > `Adicionar Pacotes...`.
3. Insira a URL do repositório: `https://github.com/combateafraude/caf-ios-sdk`
4. Selecione o `CafFaceLivenessLite` pacote ou seu SDK unificado, se aplicável.
5. Conclua a integração seguindo os prompts.

### CocoaPods

1. Certifique-se de que o CocoaPods esteja instalado no seu sistema. Caso não esteja:

```bash
sudo gem install cocoapods
```

2. Acesse o diretório do seu projeto.
3. Crie ou atualize seu Podfile (exemplo):

```ruby
platform :ios, '15.0'
use_frameworks!

target 'YourAppTarget' do
  pod 'CafSDKiOS/CafFaceLivenessLite', '7.5.0'
end
```

4. Instale os pods:

```bash
pod install
```

5. Abra o `.xcworkspace`.


---

# 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/caf-sdk-pt-br/ios/standalone-modules/caffacelivenesslite/installation.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.
