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

Phone - Sony Xperia Z

Google Play services application - last version. Google APIs - last version. 18 version.

Why it doesn't work.I've already searched it. Can't find the solution. On samsung galaxy s3 it works.

Raghunandan
  • 132,755
  • 26
  • 225
  • 256
Vyacheslav
  • 26,359
  • 19
  • 112
  • 194

2 Answers2

3

Try this method to check whether GooglePlayService are available or not

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;
    }
Biraj Zalavadia
  • 28,348
  • 10
  • 61
  • 77
0

https://dl-ssl.google.com/android/repository/google_play_services_3225130_r10.zip Here download and install. May be bug or something else. But it works with this library.

Vyacheslav
  • 26,359
  • 19
  • 112
  • 194