// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { kotlin_version = '1.8.10' hilt_version = '2.45' } repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.2.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } plugins { id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false id 'com.google.dagger.hilt.android' version "$hilt_version" apply false } allprojects { repositories { google() mavenCentral() } } tasks.register('clean') { delete rootProject.buildDir }