无法在 Android Studio 中解析符号 'LocationClient'
Cannot resolve symbol 'LocationClient' in Android Studio
我在 Android Studio 中开发我想在其中使用位置服务的应用程序时遇到此错误。
我知道这个问题之前已经被问过,但我相信之前的是使用在 Eclipse 中开发的应用程序。
我相信这可能是 Google Play 服务设置的问题
我已经按照此处的说明进行操作 http://developer.android.com/google/play-services/setup.html 但我现在收到错误消息。
会不会是因为我之前在eclipse中通过SDK管理器安装了Google Play Services?
任何帮助将不胜感激,谢谢
小技巧
在您的 build.gradle
中添加 google play services
旧版本
compile 'com.google.android.gms:play-services:5.0.89'
我知道这不是好的解决方案。但它可以解决你的问题。
LocationClient
已于几个月前从 Play Services SDK 中删除。您现在使用 GoogleApiClient
、LocationServices.API
和 FusedLocationProviderApi
访问 Play 服务中的融合位置提供程序。 This sample project demonstrates how to get a location fix from this new API, and its use is also covered in this blog post.
或者如果您只需要定位服务,那么使用
compile 'com.google.android.gms:play-services-location:x.x.x'
Here 您可以找到包含一些 Google Play 服务的列表 API(滚动至 Table 1)
P.S.: 还不能添加评论:(
我在 Android Studio 中开发我想在其中使用位置服务的应用程序时遇到此错误。
我知道这个问题之前已经被问过,但我相信之前的是使用在 Eclipse 中开发的应用程序。
我相信这可能是 Google Play 服务设置的问题
我已经按照此处的说明进行操作 http://developer.android.com/google/play-services/setup.html 但我现在收到错误消息。
会不会是因为我之前在eclipse中通过SDK管理器安装了Google Play Services?
任何帮助将不胜感激,谢谢
小技巧
在您的 build.gradle
google play services
旧版本
compile 'com.google.android.gms:play-services:5.0.89'
我知道这不是好的解决方案。但它可以解决你的问题。
LocationClient
已于几个月前从 Play Services SDK 中删除。您现在使用 GoogleApiClient
、LocationServices.API
和 FusedLocationProviderApi
访问 Play 服务中的融合位置提供程序。 This sample project demonstrates how to get a location fix from this new API, and its use is also covered in this blog post.
或者如果您只需要定位服务,那么使用
compile 'com.google.android.gms:play-services-location:x.x.x'
Here 您可以找到包含一些 Google Play 服务的列表 API(滚动至 Table 1)
P.S.: 还不能添加评论:(