我正在将一个Android项目从ActionbarSherlock迁移到Appcompat-v7。
我已使用以下代码在build.gradle中添加了appcompat-v7库 -
compile 'com.android.support.appcompat-v7:19.+'
使用终端中的gradle命令编译代码,并生成debug-apk。但是,Android Studio 1.5 RC1在编译期间显示以下错误
/Users/Projects/PageTurner/res/values/styles.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name '@style/Theme.AppCompat.Light.DarkActionBar'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name '@style/Theme.AppCompat'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name '@style/Theme.AppCompat.Light.DarkActionBar'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.ActionBar'.
如何解决这个问题?