// 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 'com.android.tools.build:gradle:8.1.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { google() mavenCentral() } } tasks.register('clean', Delete) { delete rootProject.layout.buildDirectory }