搭建Google-api-java-client开发环境

发布于 2024-12-02 23:05:18 字数 290 浏览 2 评论 0原文

我正在尝试官方示例calendar-v2-atom-android。我已经使用maven导入了所有依赖项并且编译成功。但是,在运行时,没有类定义发现错误发生时

私有最终列表日历= Lists.newArrayList();

私有最终 HttpTransport 传输 = AndroidHttp.newCompatibleTransport();

似乎在运行时找不到库中的类。

我应该在日食中做什么?

谢谢。

I am trying the official example calendar-v2-atom-android. I have already import all dependency by using maven and it compile successfully. However, in run time , no class def found error occurs when it comes to

private final List calendars = Lists.newArrayList();

private final HttpTransport transport = AndroidHttp.newCompatibleTransport();

It seems that it can't find the class in library in runtime.

What should I do in eclipse?

Thank You.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他不在意 2024-12-09 23:05:18

下载 Google Api Java 客户端

在 eclipse 项目中创建一个 libs 文件夹。

将所有不以 -source 结尾的客户端文件拖放到刚刚创建的 libs 文件夹中。
不要添加依赖项文件夹,而是将依赖项从文件夹内拖到 libs 文件夹中。

转到项目 ->属性-> Java 构建路径 -> “库”选项卡

单击“添加 JARS”,导航到您的 libs 文件夹并添加所有客户端文件。

单击“订购和导出”选项卡并勾选您添加的所有客户端文件。

清理项目。
你应该可以走了。

更新

从 ADT Rev. 21 开始,设置工作如下:

  1. 在 eclipse 项目中创建一个 libs 文件夹
  2. 将所有不以 -source 结尾的客户端文件拖放到刚刚创建的 libs 文件夹中。不要添加依赖项文件夹,而是将依赖项从文件夹内拖到 libs 文件夹中。
  3. 转到项目 ->属性-> Java 构建路径 ->订购和导出选项卡
  4. 选中“Android Private Libraries”复选框,然后就可以开始了。

Download the Google Api Java Client

Create a libs folder in your eclipse project.

Drag and drop all client files that do not end in -source into the libs folder you just made.
Do not add the dependencies folder, instead drag the dependencies from inside the folder to the libs folder.

Go to Project -> Properties -> Java Build Path -> Libraries Tab

Click Add JARS, navigate to your libs folder and add all of the client files.

Click the Order and Export tab and check off all the client files you added.

Clean the project.
You should be good to go.

Update

As of ADT Rev. 21, the setup works as follows:

  1. Create a libs folder in your eclipse project
  2. Drag and drop all client files that do not end in -source into the libs folder you just made. Do not add the dependencies folder, instead drag the dependencies from inside the folder to the libs folder.
  3. Go to Project -> Properties -> Java Build Path -> Order and Export Tab
  4. Check off the box for "Android Private Libraries" and you're good to go.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文