Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Import library folder 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 the library module need to have Export option enabled in the dependencies configuration. – CrazyCoder Feb 25 at 5:02
but it's not just importing a library issue. I know how to import any library project. I'm having trouble importing "slidingmenu" lib. There are no any tutorial related to how to import it. – Mustafa Güven Feb 25 at 7:33
1  
I've prepared the sample project using example from the SlidingMenu and ActionBarSherlock. You can grab it here for investigation. Open SlidingMenu/example project 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 *Activity to Sherlock*Activity in several library classes. – CrazyCoder Feb 25 at 9:09
I dont know how much I need to thank you. You sir, you are really lifesaver! Thank you 1000 times! It works like a charm. – Mustafa Güven Feb 25 at 12:27

1 Answer

up vote 5 down vote accepted

I've prepared the sample project using example from the SlidingMenu and ActionBarSherlock. You can grab it here for investigation. Open SlidingMenu/example project 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 *Activity to Sherlock*Activity in several library classes (per instructions on the SlidingMenu project page).

Dependencies are set as follows:

example (main app)
  library (SlidingMenu)
    abs (ActionBarSherlock) (make sure Export is enabled)
      android-support-v4.jar (make sure Export is enabled)
      junit (for ActionBarSherlock tests)

dependencies

share|improve this answer
kilothanks man! – Vasily Sochinsky May 17 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.