// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.8.10' repositories { // Make sure that you have the following two repositories google() // Google's Maven repository mavenCentral() // Maven Central repository } } plugins { id 'com.android.application' version '8.2.1' apply false id 'com.android.library' version '8.2.1' apply false id 'org.jetbrains.kotlin.android' version '1.8.10' apply false id("com.google.gms.google-services") version "4.4.0" apply false id 'com.google.dagger.hilt.android' version '2.44' apply false }