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

       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,问题就解决了!


你可能感兴趣的:(android,studio使用问题汇总,Android,Studio使用问题汇总)