私のアプリケーションでは、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 が見つかりません
この問題を解決するにはどうすればよいですか。また、そもそも何が原因でしたか。