其他分享
首页 > 其他分享> > android-Gmail登录:Google Play服务已过期

android-Gmail登录:Google Play服务已过期

作者:互联网

当我尝试使用时:

mPlusClient = new PlusClient.Builder(this, this, this)
        .setVisibleActivities("http://schemas.google.com/AddActivity",
        "http://schemas.google.com/BuyActivity").build();

它触发onConnectionFailed并且ConnectionResult是:

ConnectionResult{statusCode=SERVICE_VERSION_UPDATE_REQUIRED,
resolution=null}

整体上说:

03-02 12:12:50.969: W/GooglePlayServicesUtil(18431): Google Play services out of date.  Requires 3025100 but found 2012110

那么,我该在我的设备上更新什么呢?

解决方法:

Google Play服务是Play商店的关联功能.您可以直接从网上商店安装它:

https://play.google.com/store/apps/details?id=com.google.android.gms&hl=en

如果您使用的是模拟器,则Google Play服务会包含在以Google APIs 4.2.2和更高版本为平台目标的AVD中.我只在ARM上测试过.

参见this post for details on installing.

标签:android,google-play-services,google-plus
来源: https://codeday.me/bug/20191013/1905392.html