Project level Gradle is updated, now it looks like this
plugins {
id 'com.android.application' version '7.1.2' apply false
id 'com.android.library' version '7.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
anyway, I need to add this to my project level Gradle :
dependencies {
classpath 'com.google.gms:google-services:4.3.10'
}
I did read this article and still can't understand how to implement this!