2015-10-06 64 views
0

我在一個系統中創建了一個Android Studio項目,並在構建項目我一直在得到這個錯誤 我目前正在編譯android SDK 23無法解決com.google.android.gms:play-services-location:7.5.0取決於庫,但是是一個罐子

錯誤:配置項目':app'時發生問題。

Could not find play-services-location.jar (com.google.android.gms:play-services-location:7.5.0). Searched in the following locations: file:/home/Android/Sdk/extras/google/m2repository/com/google/android/gms/play-services-location/7.5.0/play-services-location-7.5.0.jar

事情試過到目前爲止 *添加依賴於模塊級 *降級SDK降低版本,直到21 *安裝谷歌Play業務庫

請建議

更新 我也試過這個。錯誤:無法解析:com.google.android.gms:play-services-nearby:8.1.0 安裝存儲庫和同步項目
打開文件
在項目結構對話框中顯示 錯誤:錯誤:無法解析:com.google .android.gms:play-services-appindexing:8.1.0 安裝存儲庫和同步項目
打開文件
在項目結構對話框中顯示 錯誤:錯誤:無法解析:com.google.android.gms:play-services-遊戲:8.1.0 安裝知識庫和同步項目
打開文件
在項目結構對話框中顯示 當我點擊安裝存儲庫時,它告訴我錯誤: 「忽略未知的包過濾器」extra-google-m2repository'Wa rning:包過濾器刪除了所有包。沒有什麼可安裝的。 請考慮嘗試在沒有包過濾器的情況下再次更新。「

+1

在SDK管理器安裝谷歌庫。 – CommonsWare

回答

0

您需要在應用程序級別添加您的gradle文件,並且應該包含您可以在應用程序中使用的所有Google Play服務。下面的網址上包括哪些服務(位置服務是其中之一)。

apply plugin: 'com.android.application' 
... 

dependencies { 
    compile 'com.google.android.gms:play-services:8.1.0' 
} 

https://developers.google.com/android/guides/setup

+0

請參閱上面的更新 –