0

How to fix "Could not find com.google.gms:google-services3.0.o " Even after adding json file andgoogle-services.json file applying plugin for it

This is where i applied plugin for google services Image Here

[Classpath dependencies][3]

Atif AbbAsi
  • 5,633
  • 7
  • 26
  • 47
  • 1
    Did you add classpath 'com.google.gms:google-services:3.0.0' to your project level gradle file? – wnieves19 Oct 16 '17 at 13:12
  • Possible duplicate of [How to fix Error:Could not find com.google.gms: google-services: 3.0.0.?](https://stackoverflow.com/questions/39554608/how-to-fix-errorcould-not-find-com-google-gms-google-services-3-0-0) – Oussema Aroua Oct 16 '17 at 13:12

1 Answers1

0

add this in your project module gradle

 classpath 'com.google.gms:google-services:3.0.0'

add dependencies

compile 'com.google.android.gms:play-services-auth:10.2.0'
}
apply plugin: 'com.google.gms.google-services'
Atif AbbAsi
  • 5,633
  • 7
  • 26
  • 47