Reputation: 4364
I need to add actionBarSherlock
to my android project.
I have downloaded actionbarsherlock
and it has four folders: libs, res,src,test
I need to ask what next. like widows there is no dll or anything.
I found no help on already-asked questions about this on SO.
Upvotes: 1
Views: 619
Reputation: 5087
@M D answer is OK. But you should consider adding dependencies to your project using only Gradle. In your case you only need to add:
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
in your build.gradle
Upvotes: 0
Reputation: 47807
Step 1: Add project as Module in your current project. see below screen shot
Step 2: now after successfully adding module you can add this Module as dependency in your project.
For that go to File ---> Project Structure and you got below screen
Upvotes: 1