码迷,mamicode.com
首页 > Web开发 > 详细

[原创]在使用SDK 23(6.0)版本后org.apache.http相关的类找不到的解决办法

时间:2016-04-18 17:00:06      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

参考:
 
 
1. 在Android模块里面添加
android {
    useLibrary ‘org.apache.http.legacy‘
}
 
这个对我不起作用,依然提示 不识别 org.apache.http.legacy
 
2. 在Dependency中添加:
dependencies {
    compile ‘org.apache.httpcomponents:httpcore:4.4.2‘
}
 
这个亲测有效!! ^_^
 
3. 在Dependency中添加:
compile ‘org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2‘
 
没有测试,估计有效。看别人的回复:
 

You can simply add this to Gradle dependencies:

compile "org.apache.httpcomponents:httpcore:4.3.2"
========================
This helps. But still not enough if you want to use other classes like HttpGet. For that I used compile ‘org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.cli‌?ent:4.1.2‘ – AlexAndro Oct 5 ‘15 at 9:10
 
在Dependency中添加以后, Gradle会自动从server下载所需要的依赖。好神奇。。。似乎是下载到了SDK的目录?

[原创]在使用SDK 23(6.0)版本后org.apache.http相关的类找不到的解决办法

标签:

原文地址:http://www.cnblogs.com/zzpbuaa/p/5404986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!