如何修复错误:任务执行失败':app:mergeDebugResources

时间:2017-10-09 06:45:16

标签: android android-gradle

错误:任务':app:mergeDebugResources'执行失败。

  

C:\ Users \ Ayuso.android \ build-cache \ b2c92a1a34e3ead110e3f2338c3550cf7dccb6d4 \ output \ res \ values-in \ values.xml:1:1:错误:prolog中不允许使用内容。

enter image description here

2 个答案:

答案 0 :(得分:0)

values.xml中存在res/values-es/的错误。 values.xml必须包含有效的XML 标记。如果文件是空白文本文件,则会出错。你需要这样的东西:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- Add your layout here -->

</LinearLayout>

答案 1 :(得分:0)

我修复它下载新版本的android studio beta ..