Skip to content Skip to sidebar Skip to footer

Getting Error Message "could Not Find Com.google.gms:google-services:2.0.0-alpha6."

I am trying google analytic in my project. but found following error message after changing build.gradle file. Error:Could not find com.google.gms:google-services:2.0.0-alpha6. Sea

Solution 1:

I had the same problem as you did, and having looked at Google Analytics Quickstart project linked by Tiem Song's answer the I think you are missing the jcenter() repository as I was.

JCenter is the now the default repository used with Android’s gradle plugin[0], but older projects were created using mavenCentral() as the default repository, which doesn't have any of the google-services.

Your build.gradle should look like.

repositories {
    ...
    jcenter()
}
dependencies {
    ...
    classpath 'com.android.tools.build:gradle:2.0.0-beta6'
    classpath 'com.google.gms:google-services:2.0.0-beta6'
}

(I have also updated the beta version from 5 to 6, but that is just to make the answer as current as possible)

Hope that helps

[0] - http://blog.bintray.com/2015/02/09/android-studio-migration-from-maven-central-to-jcenter/

Solution 2:

Give the beta5 versions of the dependencies a try:

classpath 'com.android.tools.build:gradle:2.0.0-beta5'
classpath 'com.google.gms:google-services:2.0.0-beta5'

The Google Analytics Quickstart project is a working Android app and includes build.gradle examples.

Post a Comment for "Getting Error Message "could Not Find Com.google.gms:google-services:2.0.0-alpha6.""