score:0

that library is abandoned anyway, but if you want to use it in as with gradle here's its repository version with instructions for easier import.

score:1

first, you need to include actionbarsherlock into your project, you can do this by import the file aar that you find in this site:

http://gradleplease.appspot.com/

then, search for actionbarsherlock and you will find this piece of code:

dependencies { compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' }

put this code into your build.gradle file (inside app folder). if the dependencies it's alreay there, just include the compile ... line.

the next step is add the slidingmenu into your project, check into this repository the dependency for the project: https://github.com/jzaccone/slidingmenu-aar

then add into build.gradle as same as above.

you can also clone the slidingmenu into your project and import manually, it's up to you.

remember to change all of your activities and fragments to extends the sherlockactivity / sherlockfragment.


Related Query