将哪个 apache http 组件添加到 gradle 用于 multipart-form
which apache http component to add to gradle for multipart-form
我的问题实际上是
的跟进
我需要知道要将哪些依赖项添加到 gradle 才能使代码正常工作。我试过如下但它不起作用
//apache http client
compile 'org.apache.httpcomponents:httpmime:4.5.1'
compile 'org.apache.httpcomponents:httpclient:4.5.1'
正如我对以下问题的回答:
您可以改用 HttpClient for Android 4.3.5
。
但是,由于 API22 中 Apache 库的弃用,建议您改用 HttpUrlConnection、OkHttp...。
我的问题实际上是
的跟进我需要知道要将哪些依赖项添加到 gradle 才能使代码正常工作。我试过如下但它不起作用
//apache http client
compile 'org.apache.httpcomponents:httpmime:4.5.1'
compile 'org.apache.httpcomponents:httpclient:4.5.1'
正如我对以下问题的回答:
您可以改用 HttpClient for Android 4.3.5
。
但是,由于 API22 中 Apache 库的弃用,建议您改用 HttpUrlConnection、OkHttp...。