Bibin Benny
Bibin Benny

Reputation: 43

The import org.apache.http.entity.mime cannot be resolved in Android

After Adding slidemenu library in to my project I am getting this problem

"The import org.apache.http.entity.mime cannot be resolved"

Please help me to solve this one.

Upvotes: 0

Views: 2232

Answers (2)

JAAD
JAAD

Reputation: 12379

In MarshMallow google has removed org.apache.* package so you have to either use a CompileSdkVersion less than 23 or import apache packages you need by external dependency like:

compile "org.apache.httpcomponents:httpcore:4.2.4"

compile "org.apache.httpcomponents:httpmime:4.3"

Upvotes: 1

Hardik Dungrani
Hardik Dungrani

Reputation: 119

Download the jars from the apache commons site and add them to project.

or Add these two dependency

compile "org.apache.httpcomponents:httpcore:4.2.4"

compile "org.apache.httpcomponents:httpmime:4.3"

Upvotes: 2

Related Questions