try checking my solution here. ABS includes junit which might be running for you. Try following my solution here:
Problems importing project into Android Studio regarding ActionBarSherlock
Below is the detail which will hopefully also work in your case. Specifically check step 4)
The steps below allowed me to get ActionBarSherlock
running with no issues.
1) Download latest ABS here: [http://actionbarsherlock.com/][1]
2) Extract ABS you should have a directory in there called "actionbarsherlock". Copy that to your Android Studio workspace. and rename to ActionBarSherlock (changed casing)
-- > I now have my Android Studio Projects under \*documents*\Android Workspace\
As opposed to \Eclipse Workspace\
So you should now have something like :
\*documents*\Android Workspace\ActionBarSherlock\
Along with your main project maybe:
\*documents*\Android Workspace\TestProject\
3) Open Android Studio load your TestProject
then goto File> Import Module..
. Now navigate to ActionBarSherlock under \*documents*\Android Workspace\ActionBarSherlock\
Click Ok and next all the way to finish. It will ask if you want to set a dependancy to the new Module (or at least mine did) click OK
4) at this point when compiling I was getting errors in \ActionBarSherlock\test\
complaining about Junit
. I simply deleted the \Test\
directory from my ABS Module under project view. Right click \test\ > Delete...
. You could also include the junit jar file but I don't think its necessary
5) you should now be able to compile without errors