Android Studio 中org.apache.http.legacy解决办法

来源:互联网 发布:画流程图软件 编辑:程序博客网 时间:2024/05/07 22:45

       Android Studio在build时,提示

Unable to find optional library: org.apache.http.legacy
是说找不到这个类。这是什么情况呢?

查阅文档发现,原来是Android 6.0不再支持 Apache HTTP client, 建议使用 HttpURLConnection 代替。如果还想要继续使用 Apache HTTP client 的,请在build.gradle中添加下面的代码

android {    useLibrary 'org.apache.http.legacy'}

重新同步build.gradle,问题就解决了!


1 0
原创粉丝点击