Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not get unknown property 'config' for type com.google.gms.googleservices.GoogleServicesPlugin$GoogleServicesPluginConfig

I'm trying to upgrade my libraries from :

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

to

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

and I'm getting below error :

enter image description here

like image 991
Solanki Zeel Avatar asked Jun 29 '19 05:06

Solanki Zeel


1 Answers

Updating OneSignal Plugin to 0.12.3 solved the problem for me:

buildscript {     //.......     dependencies {         classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.12.3'     }     //.... } 

Check this: https://github.com/OneSignal/OneSignal-Gradle-Plugin/issues/95

like image 199
hiddeneyes02 Avatar answered Oct 04 '22 04:10

hiddeneyes02