创建项目后:资源编译失败

时间:2018-10-19 16:06:29

标签: android

我刚开始一个项目,却抛出此错误:

Android resource compilation failed
Output:  C:\Users\manol\Documents\_docs\programacion\android\MentalPower\app\src\main\res\mipmap-anydpi-v26\ic_launcher_round.xml:1: error: not well-formed (invalid token).

Command: C:\Users\manol\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\3f3056168861575e0d5562b5a9598ddf\aapt2-3.2.1-4818971-windows\aapt2.exe compile --legacy \
        -o \
        C:\Users\manol\Documents\_docs\programacion\android\MentalPower\app\build\intermediates\res\merged\debug \
        C:\Users\manol\Documents\_docs\programacion\android\MentalPower\app\src\main\res\mipmap-anydpi-v26\ic_launcher_round.xml
Daemon:  AAPT2 aapt2-3.2.1-4818971-windows Daemon #0

该项目很干净,只是使用默认选项创建了该项目。我所做的唯一更改是在colors.xml文件上,因为它引发了一些错误(更多信息herehere

非常感谢您的帮助:)

1 个答案:

答案 0 :(得分:0)

日志中指出的错误与ic_launcher_round.xml文件夹中的文件res\mipmap-anydpi-v26有关。
如果您说过这是一个新项目,则其外观应为:

<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background"/>
    <foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>