Entity returns error in MultiPartEntityBuilder

后端 未结 3 861
春和景丽
春和景丽 2021-01-19 18:30

I\'ve tried following links but none of them helped to solve the issue.

HttpPost returning error when using MultipartEntityBuilder in Android

3条回答
  •  [愿得一人]
    2021-01-19 18:53

    Try with theese versions, is working for me

    compile 'org.apache.httpcomponents:httpcore:4.3.3'
    compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: 'httpclient'
    }
    

    Also you can read more here.

提交回复
热议问题