Version conflict updating to 8.4.0

Error:

Execution failed for task ‘:app:processDebugGoogleServices’. Please
fix the version conflict either by updating the version of the
google-services plugin (information about the latest version is
available here)
or updating the version of com.google.android.gms to 8.3.0.

I’ve done all the things I’ve found.

  dependencies {
            // This does not break the build when Android Studio is missing the JRebel for Android plugin.
            classpath 'com.zeroturnaround.jrebel.android:jr-android-gradle:1.0.+'
            classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
            classpath 'com.google.gms:google-services:2.0.0-alpha3'

            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }

And in the app gradle

    compile 'com.google.android.gms:play-services:8.4.0'

14 Answers
14

Leave a Comment