Apache HttpClient Android (Gradle)

前端 未结 8 2116
不知归路
不知归路 2020-12-04 12:11

I have added this line to my build.gradle

compile group: \'org.apache.httpcomponents\' , name: \'httpclient-android\' , version: \'4.3.5\'

8条回答
  •  [愿得一人]
    2020-12-04 12:38

    I don't know why but (for now) httpclient can be compiled only as a jar into the libs directory in your project. HttpCore works fine when it is included from mvn like that:

    dependencies {
          compile 'org.apache.httpcomponents:httpcore:4.4.3'
    }
    

提交回复
热议问题