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