I originally was using compile 'com.android.support:appcompat-v7:19.0.1'
, and I decided to implement a DrawerLayout
. Unfortunately, I was informed that the v4 support library's ActionBarDrawerToggle
is deprecated, and to use the v7 version. It appears that this isn't in the 19.0.1 version of support-v7-appcompat, so I decided to upgrade to compile 'com.android.support:appcompat-v7:21.0.0'
. Now, however, I'm getting the following error in my styles:
Error:Error retrieving parent for item: No resource found that matches the given name '@style/Widget.AppCompat.Light.Base.ActionBar.TabBar.Inverse'.
(There are a few others).
I've tried a few things, including the following:
- Error in styles_base.xml file - android app - No resource found that matches the given name 'android:Widget.Material.ActionButton'
- Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Widget.ActionBar.Title'
My build.gradle
has the following configuration:
defaultConfig {
minSdkVersion 11
targetSdkVersion 17
}