0

this was the errorThis is the code Build file 'C:\Users\ANAM\AndroidStudioProjects\employeedetails\android\app\build.gradle' line: 25

I tried upgrading the gradle plugin, also tried deleting the gradle folder. But the error is in line:25 in app level build.gradle file.

'com.google.gms.google-services'

according to error, showing there. Hoping for early reply as possible

anam zaki
  • 1
  • 2
  • Check this question's answers; https://stackoverflow.com/questions/35311880/error-when-apply-plugin-com-google-gms-google-services – SLendeR Sep 09 '22 at 21:34

1 Answers1

1

The problem is that you wrote

apply 'com.google.gms.google-services'

instead of

apply plugin: 'com.google.gms.google-services'
Code Master
  • 437
  • 1
  • 7