// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() } val hiltVersion by extra("2.35") val kotlinVersion by extra("1.4.32") dependencies { classpath("com.android.tools.build:gradle:7.0.0-alpha15") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion") } } tasks.register("clean", Delete::class) { delete(rootProject.buildDir) }