My project's build.gradle code =
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
I am trying to add
classpath 'com.google.gms:google-services:4.3.13'
in my project's build.gradle file but am not getting any space to paste. Even I have tried putting this before and after plugins =
dependencies {
classpath 'com.google.gms:google-services:4.3.13'
}
Still I am having problem. I also have tried to insert plugins inside dependencies but problem still occurs.
Now, I need a solution.