> For the complete documentation index, see [llms.txt](https://doc.ozforensics.com/oz-knowledge/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.ozforensics.com/oz-knowledge/oz-knowledge/pt-br/guias/developer-guide/sdk/oz-mobile-sdk/android/adding-sdk-to-a-project.md).

# Adicionando o SDK a um projeto

Adicione a seguinte URL ao `build.gradle` do projeto:

```groovy
allprojects {
  repositories {
    maven { url "https://ozforensics.jfrog.io/artifactory/main" }
  }
}
```

Adicione isto ao `build.gradle` do módulo (VERSION é a versão que precisa ser implementada. Consulte [Registro de alterações](/oz-knowledge/oz-knowledge/pt-br/guias/developer-guide/sdk/oz-mobile-sdk/android/changelog.md)):

#### Somente para a versão baseada em servidor

Observação: esta é a versão padrão.

```kotlin
dependencies {
  implementation 'com.ozforensics.liveness:sdk:VERSION'
}
```

#### Para as versões baseadas em servidor e no dispositivo

Observação: o arquivo resultante será maior.

```kotlin
dependencies {
implementation 'com.ozforensics.liveness:full:VERSION'
}
```

Além disso, independentemente do modo escolhido, adicione:

```kotlin
android {
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}
```

A partir da versão 8.18.0, você pode mover o SDK para um módulo Google Dynamic Feature e carregá-lo sob demanda. Como a maior parte do tamanho do SDK vem de seus arquivos nativos `.so` arquivos, mover toda a interação com o SDK para um módulo separado pode reduzir significativamente o tamanho do app base.

Para dar suporte a isso, o SDK expõe um `onContextAttachListener` callback que é disparado a partir de `attachBaseContext` dentro da Activity do SDK, para que você possa chamar `SplitCompat.installActivity()` quando necessário:

{% code title="" expandable="true" %}

```kotlin
OzLivenessSDK.config.onContextAttachListener = object : OnContextAttachListener {
    override fun onContextAttached(context: Context) {
        SplitActivity.installActivity(this)
    }
}
```

{% endcode %}


---

# 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://doc.ozforensics.com/oz-knowledge/oz-knowledge/pt-br/guias/developer-guide/sdk/oz-mobile-sdk/android/adding-sdk-to-a-project.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.
