// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() } dependencies { classpath(libs.com.google.gms) classpath(libs.com.google.firebase) } } @Suppress("DSL_SCOPE_VIOLATION") plugins { alias(libs.plugins.android.gradlePlugin) apply false alias(libs.plugins.kotlin.jvm) apply false alias(libs.plugins.hilt) apply false } tasks.register("clean", Delete::class) { delete(rootProject.buildDir) }