錯誤:執行失敗的任務':app:mergeDebugResources'。如何修復錯誤:執行失敗的任務':app:mergeDebugResources
C:\Users\Ayuso.android\build-cache\b2c92a1a34e3ead110e3f2338c3550cf7dccb6d4\output\res\values-in\values.xml:1:1: Error: Content is not allowed in prolog.
錯誤:執行失敗的任務':app:mergeDebugResources'。如何修復錯誤:執行失敗的任務':app:mergeDebugResources
C:\Users\Ayuso.android\build-cache\b2c92a1a34e3ead110e3f2338c3550cf7dccb6d4\output\res\values-in\values.xml:1:1: Error: Content is not allowed in prolog.
有錯誤你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>
我解決它下載的Android工作室公測的新版本..
其中'build.gradle' –
我是如何解決這一問題? im anoob –