美文网首页
升级gradle3.0以上后遇到的问题及解决方案

升级gradle3.0以上后遇到的问题及解决方案

作者: 七秒的鱼尾 | 来源:发表于2019-10-23 11:31 被阅读0次

    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

    2、 Unable to add window android.view.ViewRootImpl$W@140715f -- permission denied for window type 2003

    相关文章

      网友评论

          本文标题:升级gradle3.0以上后遇到的问题及解决方案

          本文链接:https://www.haomeiwen.com/subject/utnhvctx.html