I am trying to follow this tutorial.
The aim is to integrate the SlidingMenu android library. As per the instructions in the tutorial:
For non-maven project : Copy library/target/slidingmenu-1.3-SNAPSHOT.jar into the libs directory of your project.
I don't know how to use Maven and I don't want to introduce another layer of complexity.
So, where can I locate the library/target/slidingmenu-1.3-SNAPSHOT.jar
file?
Update
With the exception of the Maven section, I followed the tutorial completely but got the following single error:
slidingmenu cannot be resolved or is not a field
The error is caused by this line of code:
slidingMenu.setMenu(R.layout.slidingmenu);
I'm a beginner but I know that's an issue of a missing resource. What I don't know is if it's related to the Maven issue. How can I fix it?