我正在尝试使用 Google+ API 登录我的 Android 应用程序。我已经为我的帐户启用了 API,但现在我在初始化 PlusClient 时遇到了问题。
我遵循这个方向https://developers.google.com/+/mobile/android/getting-started#step_3_initialize_the_plusclient我需要将它导入我的项目:
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks;
import com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener;
遗憾的是 Eclipse 为每个输入显示此错误:
导入 com.google.android.gms 无法解析
我的构建目标设置为 Google APIs 17,将 google-play-service_lib 添加为库,还有 android-support-v4.jar,我不知道出了什么问题。