# Installation

Step 1. Add the JitPack repository to your build file&#x20;

Add it in your root build.gradle at the end of repositories:

{% tabs %}
{% tab title="Kotlin" %}

```kotlin
dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
            mavenCentral()
            maven { url 'https://jitpack.io' }
        }
    } 
```

{% endtab %}

{% tab title="Groovy" %}

```groovy

dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	} 

```

{% endtab %}
{% endtabs %}

Step 2. Add the dependency

{% tabs %}
{% tab title="Kotlin" %}

```kotlin
    dependencies {
        implementation ("com.github.tyrads-com:tyrads-sdk-android:LATEST_VERSION") // replace LATEST_VERSION with  1.1.0 or the latest stable version	}
```

{% endtab %}

{% tab title="Groovy" %}

```groovy
dependencies {
        implementation 'com.github.tyrads-com:tyrads-sdk-android:LATEST_VERSION'  // replace LATEST_VERSION with  1.1.0 or the latest stable version
	}1.1.0 or the latest stable version	}
```

{% endtab %}
{% endtabs %}
