> For the complete documentation index, see [llms.txt](https://docs.sfbx.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sfbx.io/configuration/step-3-notice-implementation-web-app-tv/android/old-sdk-appconsentsdk/step-1-repository.md).

# Step 1: Repository

***

## Declaration of the repository

{% tabs %}
{% tab title="Old version" %}
In the `build.gradle` file at the root of your project, add the following:

{% code fullWidth="false" %}

```kotlin
repositories {
    ...
    maven {
        url "https://artifactory.datalf.chat/artifactory/app-consent-v2-release"
    }
}
```

{% endcode %}
{% endtab %}

{% tab title="Kotlin DSL" %}
In your `settings.gradle.kts` file, at the root of your project, add the following:&#x20;

```kotlin
dependencyResolutionManagement {
    ...
    repositories {
        ...
        maven { 
            url = uri("https://artifactory.datalf.chat/artifactory/app-consent-v2-release")
        }
    }
}
```

{% endtab %}

{% tab title="New Groovy" %}
In your `settings.gradle` file, at the root of your project, add the following:

```groovy
dependencyResolutionManagement {
    ...
    repositories {
        ...
        maven {
            url "https://artifactory.datalf.chat/artifactory/app-consent-v2-release"
        }
    }
}
```

{% endtab %}
{% endtabs %}
