2

我在我的 Android 应用程序中使用 Google Play 服务的授权和 GoogleAuthUtil。我大约 2 个月前做了这部分,从那以后它一直工作得很好。昨天,我更新了 SDK。现在我在我的应用程序中遇到了这个错误。它说“无法解析 GoogleAuthUtil”。
更新后的 SDK 有什么变化吗?
我该如何解决这个问题?

我正在导入以下内容:

import com.google.android.gms.auth.GoogleAuthException;
import com.google.android.gms.auth.GoogleAuthUtil;
import com.google.android.gms.auth.GooglePlayServicesAvailabilityException;
import com.google.android.gms.auth.UserRecoverableAuthException.

我正进入(状态

com.google.android.gms.auth 无法解析。

4

3 回答 3

6

每当您更新任何库时,请确保首先将其从您的参考文献中删除,然后再次将其添加到您的参考文献中。之后清理项目。如果需要,重新启动 Eclipse。我觉得你很高兴!:)

于 2013-03-27T18:00:17.550 回答
3

只需<uses-library>从您的 AndroidManifest.xml 中删除标签,然后重新启动并清理所有内容。肯定会开始运行。

于 2013-05-03T15:39:24.073 回答
2

如果您使用的是 Android Studio,请按照以下步骤操作。

  1. 打开SDK Manager-> SDK Tool-> 点击Google Play服务并应用
  2. 打开Module SettingProject Structure-> 在Dependencies选项卡上单击+按钮 -> 选择1.Library Dependency-> 选择play-services (...)然后单击确定
  3. Build通过->清理你的项目Clean Project
于 2016-01-08T17:10:05.797 回答