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
  • 131,557
  • 25
  • 223
  • 252
Vyacheslav
  • 25,010
  • 18
  • 105
  • 188

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
  • 27,812
  • 10
  • 59
  • 76
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
  • 25,010
  • 18
  • 105
  • 188