Configure Kotzilla repository
The Kotzilla SDK is available on Maven Central (recommended) and the public Kotzilla repository.
Maven Central (Recommended)
The SDK is published to Maven Central, which is included by default in most Gradle projects. No additional repository configuration is needed:
// settings.gradle.kts - Maven Central is typically already included
repositories {
mavenCentral() // SDK is available here
google()
}
Kotzilla Repository (Alternative)
For early access to pre-release versions or if you prefer to use the Kotzilla repository directly:
info
In your project root folder, add the repository URL to both the pluginManagement and dependencyResolutionManagement sections in settings.gradle.kts file.
// settings.gradle.kts
repositories {
mavenCentral()
google()
// Kotzilla repository (for pre-release versions)
maven {
name = "kotzilla"
url = uri("https://repository.kotzilla.io/repository/kotzilla-platform/")
}
}