0

How to fix this problem, I tried many way to fix it. But it's still not working. I already installed google play service at SDK manager.

enter image description here

abielita
  • 13,147
  • 2
  • 17
  • 59
Adrian Xie
  • 45
  • 1
  • 2
  • 6
  • can not work, it will stop running – Adrian Xie Sep 27 '16 at 17:05
  • What version of Google Play Services is your device running? You can check the version on the Settings/Apps menu of your phone/tablet – antonio Sep 27 '16 at 17:07
  • i use virtual device in android studio, how to do that – Adrian Xie Sep 27 '16 at 17:13
  • Probably this post can help http://stackoverflow.com/questions/14536595/how-to-download-google-play-services-in-an-android-emulator – xomena Sep 29 '16 at 10:10
  • 6
    Possible duplicate of [updating Google play services in Emulator](https://stackoverflow.com/questions/35476182/updating-google-play-services-in-emulator) – xomena Sep 23 '17 at 12:45

2 Answers2

0

Go to build.gradle > use this

compile 'com.google.android.gms:play-services:9.4.0'

instead of this

compile 'com.google.android.gms:play-services:9.8.0'

basically just change 8 to 4

Rafael Marques
  • 1,501
  • 15
  • 23
0

In build.gradle (Module:app) I just changed

compile 'com.google.android.gms:play-services-maps:11.0.4'

to

compile 'com.google.android.gms:play-services-maps:10.0.0'

I tried initially changing to 11.0.0 but experienced the same problem with 11.0.0. so just tried with 10.0.0 and don't have any problems.

Pembroke
  • 113
  • 2
  • 9