如何在eclipse中导入okhttp库?

时间:2013-09-03 08:39:53

标签: android maven jar

我使用外部jar导入okhttp库。但是它说类def发现错误。根据文档,需要在eclipse项目中使用pom.xml拆分两个外部库--->导入 - > maven - >安装或部署运动员到maven呼吸。我不知道什么是articraft file.pls任何人帮助我吗?

2 个答案:

答案 0 :(得分:0)

嗨Divya我认为你正在向Missing com.squareup.okhttp.internal.Util crash裁判你可以使用最新的1.2.1版OkHttp。

要解决您的问题,请下载该版本的-with-dependences jar

让我知道它是否解决了你的问题:)

答案 1 :(得分:0)

根据第一个pastebin中提供的异常,我认为你需要扩展Activity类,因为它看起来像是一个Android项目。

其次(根据您的评论),您需要将以下依赖项添加到项目的pom.xml文件中:

<dependency>
  <groupId>com.squareup.okhttp</groupId>
  <artifactId>okhttp</artifactId>
  <version>1.2.1</version>
</dependency>

Square的页面有很好的文档 - http://square.github.io/okhttp/