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


手机-Sony Xperia Z

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

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

最佳答案

尝试使用此方法检查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;
    }

10-04 14:51