I tried installing Google Play on the emulator. I followed the instructions on the Google Dev Site .
Using the ADV-manager looks fine, the devices are focused on the Google API version 22, but when I launch my image, I always have "This application will not work if you do not update the Google Play services"

My test program works fine on a real device
Dependencies include the following:
dependencies {
compile 'com.google.android.gms:play-services:7.3.0'
}
I tried manually adding apk Google Play:
> adb install -r com.google.android.gms-7.3.29_\(1866531-038\)-7329038-minAPI9.apk
4503 KB/s (37113767 bytes in 8.048s)
pkg: /data/local/tmp/com.google.android.gms-7.3.29_(1866531-038)-7329038-minAPI9.apk
So, is there a way to check if the emulator works with Google Play services? If not, how to solve the problem?
source
share