cnfw
cnfw

Reputation: 800

Issue with importing slidingmenu into an existing eclipse project

I imported the library into eclipse by going to File>Import>Existing android Code> etc and now i have an extra project called "library" in my workspace

Then I right clicked on the project i want to implement this library to and clicked properties, added the library project, as shown in the screenshot below. But when I click Apply/Ok i get a jar dependency error, does anyone know how I can properly use the slidingmenu library in my app? Thanks

Screenshot showing the imported library

Upvotes: 0

Views: 188

Answers (1)

jkau
jkau

Reputation: 465

Jar mismatches are usually due to the support v4 library jar file being in both your project and the library. To fix this, make sure the entire project and its libraries has 1 copy of the jar by deleting any others. Afterwards, reference that one copy by right clicking your project and adding that copy as an external archive.

Upvotes: 1

Related Questions