Skip to main content

Configure Kotzilla repository

The Kotzilla SDK is available on Maven Central and the public Kotzilla repository.

info

In your project root folder, add the repository URL to both the pluginManagement and dependencyResolutionManagement sections in settings.gradle.kts file. Project (root-level) Gradle settings file (<project>/settings.gradle.kts)

repositories {
// Kotzilla
maven {
name = "kotzilla"
url = uri("https://repository.kotzilla.io/repository/kotzilla-platform/")
}
}