0

在我的应用程序中,我使用的是 LocationManager,现在我想使用 Fused Location Services 我正在使用 Android Studio 1.1.0 并在 gradle 中添加了 google play 服务库

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':pull_to_refresh')
compile project(':uil_library')
compile project(':viewPagerIndicatorLib')
compile files('libs/date4j.jar')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:cardview-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.3'
compile 'com.google.maps.android:android-maps-utils:0.3.+'
compile 'joda-time:joda-time:2.7'
compile 'com.github.shell-software:fab:1.0.5'
compile 'com.google.android.gms:play-services:6.5.87'
}

但是当我定义 GoogleApiClient 变量时,它说

无法解析符号“GoogleApiClient”

所以我点击 alt+Enter 导入它,但它显示“将库 'google-play-service-6.5.8.7' 添加到类路径”,所以我点击它,当我运行我的应用程序时它显示错误

错误:(9, 41) 错误: com.google.android.gms.common.api 包不存在 错误:(23, 13) 错误: 找不到符号类 GoogleApiClient

我该如何解决这个问题以及首先导致它的原因。

4

1 回答 1

0

我觉得很愚蠢 :) 这个 gradle 在我的主应用程序中,但我在库项目中使用 GoogleApiClient,所以我也必须添加compile 'com.google.android.gms:play-services:6.5.87'到我的库中

于 2015-03-13T12:34:45.920 回答