// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '2.0.21' repositories { google() mavenCentral() } dependencies { // noinspection AndroidGradlePluginVersion classpath libs.gradle.v881 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { google() mavenCentral() } } tasks.register('clean', Delete) { delete rootProject.layout.buildDirectory }