Reputation: 43
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
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
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