本文介绍了Google Play服务需要在android studio模拟器中更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Google Play服务需要在 android studio 模拟器中进行更新。但如果我按更新没有任何反应。我正在使用api 23.1.1。我需要使用op play services 来使用 Google Cloud Messaging 。您需要如何更新?

Google Play Services need to update in android studio emulator. But if I press update nothing happens. I am using api 23.1.1. I need to use the op play services to use Google Cloud Messaging. how do you need to update?

推荐答案

我之前通过更改build.gradle文件中的一行来修复此问题

I fixed this issue before by changing a line in my build.gradle file

from:

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

到:

compile 'com.google.android.gms:play-services:7.+'

这篇关于Google Play服务需要在android studio模拟器中更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-01 12:21