android build error

No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.

这是因为你的progject structer 是选的 API22 ,但是某个库需要23来编译,所以你改成23就行了

android build error_第1张图片

android build error_第2张图片



http://stackoverflow.com/questions/32075498/error-retrieving-parent-for-item-no-resource-found-that-matches-the-given-name


我项目用了cast,然后cast 第三方库里有个 compile 'com.google.android.gms:play-services-cast:8.4.0'
然后build出错,



后来换成 7.8.+ 就可以build了,但是这不是原因,原因还是在于两个playservice不一致导致的。 主项目里换成8.4.0 也可以解决这问题

你可能感兴趣的:(android build error)