搭建Google-api-java-client开发环境
我正在尝试官方示例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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下载 Google Api Java 客户端
在 eclipse 项目中创建一个 libs 文件夹。
将所有不以 -source 结尾的客户端文件拖放到刚刚创建的 libs 文件夹中。
不要添加依赖项文件夹,而是将依赖项从文件夹内拖到 libs 文件夹中。
转到项目 ->属性-> Java 构建路径 -> “库”选项卡
单击“添加 JARS”,导航到您的 libs 文件夹并添加所有客户端文件。
单击“订购和导出”选项卡并勾选您添加的所有客户端文件。
清理项目。
你应该可以走了。
更新
从 ADT Rev. 21 开始,设置工作如下:
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: