无法解析符号 'GooglePlayServicesClient'
Cannot resolve symbol 'GooglePlayServicesClient'
我正在尝试将一个项目从 Eclipse 迁移到 Android Studio,该项目可以在 Eclipse 中构建并成功导入到 Android Studio,但是,我得到 Cannot resolve symbol 'GooglePlayServicesClient'
Android Studio 中的错误。
我按照官方教程在Android Studio 中导入了Google Play 服务,而在我的项目中使用的另一个包“com.google.android.gms.common.ConnectionResult
”没有同样的问题。只有“GooglePlayServicesClient
”无法解析。
我也尝试过清理并重建我的项目,但问题仍然存在。我做错了什么?
更新:
我的build.gradle
...
dependencies {
compile project(':libraryListViewAnimations')
compile 'com.android.support:support-v4:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:+'
compile 'com.google.android.gms:play-services:7.0.0'
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile files('libs/commons-net-3.1-sources.jar')
compile files('libs/commons-net-3.1.jar')
compile files('libs/mail.jar')
}
您是否将 compile 'com.google.android.gms:play-services:7.0.0'
添加到 build.gradle?
您可以找到更多指南 here 。希望对您有所帮助。
GooglePlayServicesClient 已过时,不再包含在 Google Play 服务 7.x 库中。 Google 建议改用 GoogleApiClient。
请参阅 Android 开发人员文档中的 Accessing Google APIs:
"Note: If you have an existing app that connects to Google Play services with a subclass of GooglePlayServicesClient, you should migrate to GoogleApiClient as soon as possible."
我正在尝试将一个项目从 Eclipse 迁移到 Android Studio,该项目可以在 Eclipse 中构建并成功导入到 Android Studio,但是,我得到 Cannot resolve symbol 'GooglePlayServicesClient'
Android Studio 中的错误。
我按照官方教程在Android Studio 中导入了Google Play 服务,而在我的项目中使用的另一个包“com.google.android.gms.common.ConnectionResult
”没有同样的问题。只有“GooglePlayServicesClient
”无法解析。
我也尝试过清理并重建我的项目,但问题仍然存在。我做错了什么?
更新:
我的build.gradle
...
dependencies {
compile project(':libraryListViewAnimations')
compile 'com.android.support:support-v4:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:+'
compile 'com.google.android.gms:play-services:7.0.0'
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile files('libs/commons-net-3.1-sources.jar')
compile files('libs/commons-net-3.1.jar')
compile files('libs/mail.jar')
}
您是否将 compile 'com.google.android.gms:play-services:7.0.0'
添加到 build.gradle?
您可以找到更多指南 here 。希望对您有所帮助。
GooglePlayServicesClient 已过时,不再包含在 Google Play 服务 7.x 库中。 Google 建议改用 GoogleApiClient。
请参阅 Android 开发人员文档中的 Accessing Google APIs:
"Note: If you have an existing app that connects to Google Play services with a subclass of GooglePlayServicesClient, you should migrate to GoogleApiClient as soon as possible."