I got some issues in the google sign option integration.
I am using android studio 1.2.2 and i follow the link https://developers.google.com/identity/sign-in/android/start
but got error in manifest file
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
At @integer/google_play_services_version
as red color says Cannot resolve symbol issue.
Additional information
Added this to my projects build.gradle
classpath 'com.google.gms:google-services:1.3.0-beta1'
and this to module build.gradle
apply plugin: 'com.google.gms.google-services'
Gradle build successfully
Finally found solution ,
Adding this has solve that issues. I don't know why its not mentioned in the googles document
Some more information about the issues
In the document they have mentioned the followings
I have added the googel-services.json in my project route folder as described in the document, but its not add any library to my application until i add the
compile 'com.google.android.gms:play-services:7.5.0'
to my module.