1

当我尝试使用时:

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

那么,我究竟应该在我的设备上更新什么?

4

1 回答 1

1

Google Play 服务是 Play 商店的相关功能。您可以在此处直接从网上商店安装它:

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

如果您使用的是模拟器,则 Google Play 服务包含在 AVD 中,并将 Google API 4.2.2 和更高版本设置为平台目标。我只在ARM上测试过。

有关安装的详细信息,请参阅此帖子

于 2013-03-04T18:38:55.273 回答