Reputation: 25312
I am using latest android studio V2.0.When I using emulator with Google API_23.
While running my SocialLoginDemo app in emulator it gives prompt to update Google play Services. In which I integrate SignIn with Google Account functionality.
When I am click on UPDATE
button , Google play Services
is not updating.
I already configure my gmail account in emulator.
What I need to update it?
Upvotes: 2
Views: 763
Reputation: 1930
You are using newer play services version than you have in your emulator. So you have 2 options:
Since Google introduced Google Play Store images in Android SDK Tools 26.0.0. Now emulators can be created with Google Play Store already installed.
From 26.0.3
- Adds a new tab in the extended window for Google Play Store images that displays the Play Services version and a button to check for updates to Play Services.
Upvotes: 0
Reputation: 1454
I encountered the same problem before. I fixed this by changing a line in my build.gradle file
from:
compile 'com.google.android.gms:play-services:8.3.0'
to:
compile 'com.google.android.gms:play-services:7.+'
Upvotes: 2