导入的com.google.api.client无法在Eclipse中解析

时间:2013-03-30 02:59:51

标签: java android google-app-engine

我收到此错误:

The import com.google.api.client cannot be resolved

我的配置如下:

项目属性 - Android:

enter image description here

Java构建路径:

enter image description here

即使重启Eclipse,我仍然会收到以下错误。

enter image description here

有人可以帮忙吗?谢谢:D

3 个答案:

答案 0 :(得分:10)

您尚未在项目中添加客户端库。 http://code.google.com/p/google-api-java-client/wiki/Setup。 您将在上面的链接中获得google-api-java-client-1.14.1-beta.zip文件。 将这些jar文件保存在Android项目的libs文件夹中。

答案 1 :(得分:1)

如果您尝试将Google API添加到Android应用中,并且如果您使用的是Eclipse,则以下内容非常简单。

Right-click on a project, select "Google > Add Google APIs...", select the Google API you need from the list of available Google APIs, click Finish, and it will automatically download the API client library

来自https://code.google.com/p/google-api-java-client/wiki/Setup

答案 2 :(得分:1)

添加:

<!-- https://mvnrepository.com/artifact/com.google.api-client/google-api-client -->
<dependency>
    <groupId>com.google.api-client</groupId>
    <artifactId>google-api-client</artifactId>
    <version>1.23.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client-jetty -->
<dependency>
    <groupId>com.google.oauth-client</groupId>
    <artifactId>google-oauth-client-jetty</artifactId>
    <version>1.23.0</version>
</dependency>