2017-02-21 91 views
1

我想顯示在我的Android應用程序映射,這是工作之前我試過今天跑我的應用程序在模擬器中,我得到這個錯誤信息:Google Play服務已過期。要求10298000卻發現10084470,谷歌地圖

Google Play services out of date. Requires 10298000 but found 10084470 

我懷疑我沒有在我的Gradle文件中編譯正確的依賴關係,但我不確定哪些會起作用。這是我目前使用的:

compile 'com.google.android.gms:play-services-maps:+' 
compile 'com.google.android.gms:play-services-location:+' 

我也有點困惑,因爲這只是昨天工作!

+1

compile'c​​om.google.android.gms:play-services-maps:9.8.0'never use +。您必須設置一些版本,請嘗試 –

+0

[請參閱此處](https://developers.google.com/android/guides/releases) –

+0

永遠不要在庫中放置+,除非您確定其邏輯/方法/依賴項不會更新版本 – Nilabja

回答

1

從您的依賴關係中刪除plus並給出特定版本的playservice。

相關問題