Android 6.0中"Unable to find optional library: org.apache.http.legacy"错误解决

来源:互联网 发布:手机必备软件大全2016 编辑:程序博客网 时间:2024/05/19 20:49

Android 6.0版本已经已经基本将Apahce Http Client 移除出SDK,会报出以下错误:

" Unable to find optional library: org.apache.http.legacy"

 那么问题来了,如果我在以前的项目中使用了Apache HttpClient相关类,怎么办呢?

请看官网给出的解决

Apache HTTP Client Removal


Android 6.0 release removes support for the Apache HTTP client. If your app is using this client and targets Android 2.3 (API level 9) or higher, use the HttpURLConnection class instead. This API is more efficient because it reduces network use through transparent compression and response caching, and minimizes power consumption. To continue using the Apache HTTP APIs, you must first declare the following compile-time dependency in your build.gradle file:

android {    useLibrary 'org.apache.http.legacy'}
也就是在build.gradle中加入上面的配置就行了。


解决办法:

     1、看看目录D:\Android\sdk\platforms\android-23\optional 下有没有org.apache.http.legacy.jar 和 optional.json

     2、如果没有optional.json,则自己新建一个这样的文件,然后加入如下内容:

[    {      "name": "org.apache.http.legacy",      "jar": "org.apache.http.legacy.jar",      "manifest": false    }  ]  

0 0