0

我试图让 Google Quickstart 项目在 Android 上运行。 https://developers.google.com/drive/quickstart-android。我注意到有很多类似的问题 - 并且想知道是否有任何地方可以工作的示例项目?

我按照说明进行操作,但在启动时出现错误:06-10 00:15:04.904: E/AndroidRuntime(16613): FATAL EXCEPTION: main 06-10 00:15:04.904: E/AndroidRuntime(16613): java.lang.NoClassDefFoundError: com.google.api.client.googleapis.extensions.android.gms.auth.GoogleAccountCredential

指的是这一行:

  credential = GoogleAccountCredential.usingOAuth2(this, DriveScopes.DRIVE);
startActivityForResult(credential.newChooseAccountIntent(), REQUEST_ACCOUNT_PICKER);
4

1 回答 1

0

您应该使用 Google API 定位 API 级别,并确保 Google API 客户端库 jar 在您的构建路径上。

于 2013-06-10T13:04:35.130 回答