Android使用support lib报错处理方案

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

当你在eclipse中新建一个支持4.0之前系统的项目时,adt默认会把Android support lib引入你的主项目。

但是很多时候会报下面这样的错误:

appcompat_v7/res/values/styles_base.xml:24: error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.Base'.app

style或者themes资源文件会报错,从而导致项目无法通过编译。

解决方案是:

1、保证support lib项目的build target版本为5.0或者之上,

2、保证主项目和support项目的build target版本一致。

在eclipse中修改build target的方法:右键项目-->Properties-->Android (Project Build Target) 

选择相应的target版本,apply。

转载于:https://my.oschina.net/wiselyming/blog/395228

你可能感兴趣的:(Android使用support lib报错处理方案)