Android - MultipartEntity and dependencies
问题 I recently migrate my project from Eclipse to Android Studio (I do not fully control this IDE yet). In this project, I have a file uploader AsyncTask which send multipart over http. To do this, I use org.apache.httpcomponents. I created following dependencies: dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'org.apache.httpcomponents:httpcore:4.4' compile 'org.apache.httpcomponents:httpmime:4.4' ... } In my java AsyncTask code: MultipartEntityBuilder builder =