user786
user786

Reputation: 4364

How to add Actionbarsherlock to android studio project

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

Answers (2)

Gueorgui Obregon
Gueorgui Obregon

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

M D
M D

Reputation: 47807

Step 1: Add project as Module in your current project. see below screen shot

enter image description here

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

enter image description here

Upvotes: 1

Related Questions