简体   繁体   中英

Google Play services and Google maps error

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.

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;
    }

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM