The import org.apache.http.client cannot be resolved error when I update sdk to M

benarjee bojja picture benarjee bojja · Sep 20, 2015 · Viewed 59.6k times · Source

I am getting following errors when I import project into eclipse. I have updated my sdk to M.

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpVersion;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.CoreProtocolPNames;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;
import org.apache.http.protocol.HTTP;

Answer

shahzain ali picture shahzain ali · Feb 4, 2016

For eclipse -- Find library in your sdk and add it manually platforms/android-23/optional/org.apache.http.legacy.jar

For android studio add this line in build.gradle

android {
    useLibrary 'org.apache.http.legacy'
}