// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.nav_version = "2.4.2" ext.hilt_version = "2.42" repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.1.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10" classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } task clean(type: Delete) { delete rootProject.buildDir }