I know I can upload single file from AsyncHttpClient
http://loopj.com/android-async-http/
File myFile = new File("/path/to/file.png");
RequestParams params = new RequestParams();
try {
params.put("profile_picture", myFile);
} catch(FileNotFoundException e) {}
But I have to upload multiple files to the server with multipart post. How can I do that?