Reputation: 3711
I am developing an Android application. Yesterday I have changed my system. Now I am using Mac OS for development.
Just I copied the project from my previous System to current System. I have imported the Project in Eclipse.
The problem is; Now I am getting following issue.
"org.apache.http.entity.mime cannot be resolved"
How to resolve this issue ?
Upvotes: 2
Views: 19834
Reputation: 40168
You need to add the required jar to your build path.Right click on your project in the Package Explorer
,then select Build Path -> Configure Build Path
, clicki on Libraries
then click on Add JARs
. Now point your required.jar
from the Add JARs
dialog.
Upvotes: 4