最佳答案
在最近对 Android Studio 进行了更新之后,我们遇到了一些问题,需要编译一个以前可以工作的项目。起初我们得到了以下错误:
/Users/james/Development/AndroidProjects/myapp/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.0/res/values-v23/values-v23.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
我将 gradle 文件中的 sdk build 目标更新为23,这使得这个特定的问题消失了,但是它给我们留下了大量的 apache.http 包错误(特别是,我们用于 http 的大量 apache 包现在在 sdk 23中消失了)。
我想做的是解决奇怪的资源错误,但没有更新到 sdk23。我现在没有时间重写我们的工具库来使用任何已经发布的 apache http 组件的新实现。有人知道吗?