I'm beginning development on an app and I set the target to Android 2.2. can i use actionbarsherlock in my app?
I added below code in pom file :
<dependency>
<groupId>com.google.android</groupId>
<artifactId>support-v4</artifactId>
<version>r7</version>
</dependency>
<dependency>
<groupId>com.actionbarsherlock</groupId>
<artifactId>actionbarsherlock</artifactId>
<version>4.4.0</version>
</dependency>
but my app does not run in my phone with android 2.2 and i have this error :
java.lang.IllegalStateException: You must use Theme.Sherlock, Theme.Sherlock.Light, Theme.Sherlock.Light.DarkActionBar, or a derivative.
In this case what am i doing?
when i set android:theme="@style/Theme.Sherlock"
in AndroidManifest.xml appear this error:
Android Resource Packaging: Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.Sherlock').