2016-05-15 122 views
0

我嘗試了其他答案中給出的所有內容,但仍無法導入gms。不像其他答案,在導入gms的子類時出錯,我在gms本身遇到問題。無法解析符號'gms'。無法導入Google Play服務

這是我得到 Error

編輯的錯誤:即使這樣寫的 enter image description here

新增compile 'com.google.android.gms:play-services:8.4.0' Gradle

這是我已經安裝在SDK SDK SDK External

這是項目結構 enter image description here

我在做什麼錯在這裏?

+0

你可能並不需要所有的播放服務,因此建議有選擇地挑選你真的需要,以減少你的應用程序的大小的。 https://developers.google.com/android/guides/setup#split –

+1

而且我不確定你在哪裏找到的是要導入的包,但是第一次搜索「android gms location」會帶來這個https:// developers.google.com/android/reference/com/google/android/gms/location/package-summary –

回答

2

嘗試這樣

import com.google.android.gms.location.*; 
相關問題