android studio编译android M时无法使用org.apache.http.**的解决方法

android M的sdk包中不再支持org.apache.http.**类,因此无法使用httpcilent,httppost等等网络函数类

解决方法:在工程的build.gradle的android{}节点内加入

useLibrary 'org.apache.http.legacy'
重新sync即可

你可能感兴趣的:(android,android,m,httpcilent)