美文网首页
apache http library gradle引用问题

apache http library gradle引用问题

作者: 鲸歌铁码 | 来源:发表于2017-06-11 15:53 被阅读95次

    问题:

    Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.5.3 is ignored for release as it may be conflicting with the internal version provided by Android.
             In case of problem, please repackage it with jarjar to change the class packages
    

    解决:
    https://stackoverflow.com/questions/30755989/dependency-org-apache-httpcomponentshttpclient4-4-1-is-ignored-for-release-as

    Use repacked version of the apache http client suitable for android
    
    dependencies {
        compile group: 'org.apache.httpcomponents' , name: 'httpclient-android' , version: '4.3.5.1'
    }
    

    相关文章

      网友评论

          本文标题:apache http library gradle引用问题

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