We will add this feature in the new release.
This is something I am interested in too, please let me know if I can assist.
Since using OKHttp can handle this, looking forward to the new release
MultipartBody.Builder rb = new MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart("title", "Square Logo");
for (File file : targetDir.listFiles()) {
rb.addFormDataPart("file", file.getName(),
RequestBody.create(MediaType.parse(getMimeTypeFromPath(file.getAbsolutePath())), file));
}
@sduqlsc I have added this support, please check the latest version 1.0.2
Most helpful comment
We will add this feature in the new release.