I am building a demo app using actionbar sherlock in android studio and i was facing problem , mentioned in following link :- Previous Problem
now after following the re
Make sure that in all your build.gradle scripts the minSdkVersion and targetSdkVersion correspond to those you have in your manifests:
android { defaultConfig { minSdkVersion 10 targetSdkVersion 16 } }
This worked for me, I hope it does the trick for you, cheers.