0

I am trying to add classpath 'com.google.gms:google-services:2.0.0-alpha5' instead of classpath 'com.google.gms:google-services:2.0.0-alpha3' to implement Google Plus signin. But gradle project sync ends with the following error.

Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in /codes/MyProject/gradle/wrapper/gradle-wrapper.properties to gradle-2.10-all.zip

Please suggest me the possible way to solve it.

anuradha
  • 692
  • 1
  • 9
  • 22

1 Answers1

0

Download the latest gradle version by opening gradle-wrapper.properties. It is in project/gradle/wrapper directory. Update distributionUrl

distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip

Sateesh
  • 103
  • 1
  • 9