xml - Android appcompatv7 : error in resources -
today when opened eclipse today , when created new android project. appcompatv7 gets automatically gets imported per new sdk. appcompatv7 showing error. when expanding appcompatv7 there error in res --> values-large --> theme_base.xml , res --> values-large-v14 --> theme_base.xml. error in xml file shows "no resources found matches following name". please , due new project showing error.
<resources> <style name="theme.base.appcompat.dialogwhenlarge" parent="theme.base.appcompat.dialog.fixedsize" /> <style name="theme.base.appcompat.light.dialogwhenlarge" parent="theme.base.appcompat.dialog.light.fixedsize" /> </resources>
for worth, had similar compile problem, , found out google's appcompat library had breaking api change few of base themes. fixed renaming:
theme.appcompat.light
to base.theme.appcompat.light
, theme.base.appcompat.dialog.fixedsize
to base.theme.appcompat.dialog.fixedsize
(note base prefix).
Comments
Post a Comment