Skip to content Skip to sidebar Skip to footer

Fix The Version Conflict (google-services Plugin)

Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/andro

Solution 1:

You need to update the Firebase versions to the latest

Note : Latest firebase version is 15

Solution 2:

  1. If you are using this for ionic/cordova, Please follow below steps. Remove android platform on FCMPlugin.gradle (plugin folder) edit like this:

    classpath 'com.google.gms:google-services:4.1.0' compile 'com.google.firebase:firebase-core:11.0.4'

Then on plugin.xml file

<frameworksrc="com.google.firebase:firebase-core:11.0.4" /><frameworksrc="com.google.firebase:firebase-messaging:11.0.4" />
  1. If you are not using for cordova, please make sure you are using latest library for firebase.

Post a Comment for "Fix The Version Conflict (google-services Plugin)"