Android:错误:链接引用失败

时间:2019-03-27 06:28:06

标签: android android-gradle build.gradle

尝试构建应用程序时出错。

Android resource linking failed
 error: resource style/Base.V28.Theme.AppCompat.Light (aka 
 com.xxx.xxxx/Base.V28.Theme.AppCompat.Light) not found.
 error: failed linking references.

build.gradle     compileSdkVersion 28

还在sdk Manager平台中安装了28个工具

但没有找到导致此问题的原因

style.xml

**<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/card_bg</item>
    <item name="colorAccent">@color/black_dim</item>
    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="android:windowAnimationStyle">@null</item>
    <item name="autoCompleteTextViewStyle">@style/cursorColor</item>
</style>

<style name="AppThemeChange" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
</style>

<style name="MyTabLayoutTextAppearance" parent="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
    <item name="android:textSize">@dimen/tab_text_size</item>
    <item name="android:textAllCaps">true</item>
</style>

1 个答案:

答案 0 :(得分:0)

我是任何一种编码的新手,但我只是通过遵循另一个StackOverflow线程中的解决方案(据说要执行以下操作)来解决此错误:

输入命令

gradlew.bat --info clean build

我将此命令放到了build.gradle文件的末尾,它向我显示了修正错误的正确程度!

我很高兴!该命令应该可以解决许多问题!