android api 23 网络jar包问题

import org.apache.http.*;

jar包引入报错;这是因为api23版本后移除了Apache HTTP client。

解决方案:

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

详情可以查看

http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html

你可能感兴趣的:(android api 23 网络jar包问题)