okhttp:3.0.0-RC1 中无法解析 MultipartBuilder
MultipartBuilder can't be resolved in okhttp:3.0.0-RC1
我已经使用了 okhttp 并且它在以下依赖项下工作正常:
compile 'com.squareup.okhttp:okhttp:2.3.0'
最近我更新了:
compile 'com.squareup.okhttp3:okhttp:3.0.0-RC1'
显示MultipartBuilder
之类的错误无法解决。
我正在使用我的 Previous Answer 上传文件上传图片。
有什么方法可以使用 okhttp:3.0.0-RC1
实现相同的目的吗?
现在叫MultipartBody.Builder。来自 ChangeLog:
Form and Multipart bodies are now modeled. We've replaced the opaque
FormEncodingBuilder with the more powerful FormBody and
FormBody.Builder combo. Similarly we've upgraded MultipartBuilder into
MultipartBody, MultipartBody.Part, and MultipartBody.Builder.
您可以阅读更多内容here。
我已经使用了 okhttp 并且它在以下依赖项下工作正常:
compile 'com.squareup.okhttp:okhttp:2.3.0'
最近我更新了:
compile 'com.squareup.okhttp3:okhttp:3.0.0-RC1'
显示MultipartBuilder
之类的错误无法解决。
我正在使用我的 Previous Answer 上传文件上传图片。
有什么方法可以使用 okhttp:3.0.0-RC1
实现相同的目的吗?
现在叫MultipartBody.Builder。来自 ChangeLog:
Form and Multipart bodies are now modeled. We've replaced the opaque FormEncodingBuilder with the more powerful FormBody and FormBody.Builder combo. Similarly we've upgraded MultipartBuilder into MultipartBody, MultipartBody.Part, and MultipartBody.Builder.
您可以阅读更多内容here。