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

手機 - 索尼的Xperia Z^谷歌播放服務和谷歌地圖錯誤

谷歌Play服務的應用程序 - 最後一個版本。 Google API - 最新版本。 18版本。

爲什麼它不起作用,我已經搜到了。找不到解決方案。 在三星galaxy s3上有效。

+0

可能是你的緯度經度或位置不正確。 –

+0

相同的項目不適用於索尼,並在三星工作 – Vyacheslav

+0

檢查了這一點:http://stackoverflow.com/questions/17858215/google-play-services-out-of-date-requires-3159100-but-found -3158130 –

回答

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

問題是googleplayservices可用。 – Vyacheslav

+0

只需要從Playstore更新 –

+0

從playstore更新並沒有幫助 – Vyacheslav