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 ストアに関連する機能です。次の Web ストアから直接インストールできます。

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

エミュレーターを使用している場合、Google Play サービスは、Google API 4.2.2 以降がプラットフォーム ターゲットとして設定された AVD に含まれています。私はARMでのみテストしました。

インストールの詳細については、この投稿を参照してください。

于 2013-03-04T18:38:55.273 に答える