I'm using intellij idea. As you may know, importing slidingmenu lib into your brand new project is painfully while you're running on eclipse. I did it once but I am using intellij idea anymore and I wonder that is there anybody know how to import and run it succesfully while using Intellij? It is very important to me.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I've prepared the sample project using Dependencies are set as follows:
|
||||
|
|

libraryfolder as a module in IDEA, make sure it has Library Module option enabled in the Android facet, then add this module to the dependencies of your main application. Jars in thelibrarymodule need to have Export option enabled in the dependencies configuration. – CrazyCoder Feb 25 at 5:02examplefrom theSlidingMenuandActionBarSherlock. You can grab it here for investigation. OpenSlidingMenu/exampleproject in IDEA and configure Android 4.1.2 Google APIs SDK. Build, run in the emulator to test. The trick was to set the dependencies properly and to change*ActivitytoSherlock*Activityin several library classes. – CrazyCoder Feb 25 at 9:09