gpt4 book ai didi

android - 导入 com.google.android.gms.location.LocationServices,无法更新定位服务

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:25:01 24 4
gpt4 key购买 nike

我正在尝试测试 LocationService 示例,如 http://developer.android.com/training/location/retrieve-current.html我犯了一个非常类似于

的错误

Can't Import com.google.android.gms.location.LocationServices

但我无法解决。

我安装的 Google Play 服务版本(在我的 Android SDK 管理器中)是 17。我知道最新版本是 19,但我无法从 SDK 管理器更新版本,我找不到这样做的任何选项.

在我的代码中:

import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;

前两个很好,第三个是:

import.... cannot be resolved

编辑 12/1/2015

我正在使用 Eclipse。

最佳答案

您需要将 Google Play 服务库编译到您的项目中。

如果您使用的是 AndroidStudio:

打开 build.gradle 并在 dependencies 标签中添加:

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

看起来像:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:6.+'
}

使用新的 Play 服务库,您可以有选择地编译 API(您可能不需要整个库,只需要其中的一部分)。你会去:

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

有关选择性编译的更多信息 here .

关于android - 导入 com.google.android.gms.location.LocationServices,无法更新定位服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27865559/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com