This is a continuation of this problem: ActionBarSherlock + maven + eclipse: dependency not found in workspace
I was getting the error:
dependency=[com.actionbarsherlock:library:apklib:4.1.0:compile] not found in workspace
I downloaded the ActionBarSherlock code and added it to my workspace.
However, when I try to build my own project, I'm getting the following error:
UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.IllegalArgumentException: already added:
Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoIcsImpl;
I believe this is because the duplicate jar being generated. I think it's because the v4 support library appears on both my project & the ActionBarSherlock library.
What is the best way to fix this problem?
Thanks in advance.