我想在我的项目中导入来自GoogleApi的依赖项,以使用location来获取经度和纬度。
我试图遵循他们建议使用tutorial的FusedLocationProviderApi,但是他们使用eclipse,所以我使用android studio而我只是想为它添加依赖项库。
我知道如果我在build.gradle中包含compile 'com.google.android.gms:play-services:7.5.0'
,它将包含我只需要用于查找长和纬度的所有服务,我不想使用compile 'com.google.android.gms:play-services:7.5.0'
,因为我我想保持我的方法数量很低。
尝试包括:
compile 'com.google.android.gms:play-services-location:8.0.0'
compile 'com.google.android.gms:play-services-maps:8.0.0'
我得到了
使用它:compile 'com.google.android.gms:play-services-location:8.1.0'
答案 0 :(得分:1)
使用play-services-location
代替play-services
。
但请注意,出于不可理解的原因,play-services-location
取决于play-services-maps
,至少对于版本8.1.0。所以,你也将拉入Maps V2代码。