android6.0以后删除HttpClient的解决方法

Android6.0以后, 不再提供org.apache.http.*(只保留几个类),所以导致使用HttpClient的时候会报错,比如

android-async-http等等。

HttpClient在Android2.2以后就不提倡使用了。

这里解决办法就是libs中加入org.apache.http.legacy.jar

android studio还需要在build.gradle中加入:

android {
    useLibrary
'org.apache.http.legacy'
} 这样就可以了。 org.apache.http.legacy.jar下载地址点击打开链接

你可能感兴趣的:(android,android,Class,Studio)