0
10-09 12:56:30.461: W/GooglePlayServicesUtil(14202): Google Play services out of date.  Requires 3265100 but found 3225134

手机 - 索尼 Xperia Z

Google Play 服务应用程序 - 最新版本。Google API - 最新版本。18 版本。

为什么它不起作用。我已经搜索过了。找不到解决办法。在三星 Galaxy s3 上它可以工作。

4

2 回答 2

3

试试这个方法来检查 GooglePlayService 是否可用

private boolean checkPlayServices() {
        int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
        if (resultCode != ConnectionResult.SUCCESS) {
            if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
                GooglePlayServicesUtil.getErrorDialog(resultCode, this, 9000).show();

            } else {
                Log.i("GCM", "This device is not supported.");
                finish();
            }
            return false;
        }
        return true;
    }
于 2013-10-09T11:04:13.073 回答
0

https://dl-ssl.google.com/android/repository/google_play_services_3225130_r10.zip在这里下载安装。可能是错误或其他东西。但它适用于这个库。

于 2013-10-09T11:02:20.150 回答