1、引用三方module中报错:Failed resolution of: Lorg/apache/http/message/BasicNameValuePair;
问题分析:出现此问题主要是 apache 的 http 库在android 9.0删除导致的,出现此问题应该是使用了 apache 的http库。
解决方案:在App的Mainfest中<appplication>中配置以下代码:
<uses-library android:name="org.apache.http.legacy" android:required="false" />
参考:https://blog.csdn.net/FrancisBingo/article/details/90271116