Получение этой ошибки при сборке:
: app: processDebugResources / app / src / main / res / mipmap-anydpi-v26 / ic_launcher.xml: 3: AAPT: ошибка: цвет ресурса/ ic_launcher_background (также известный как com.example.app:color/ic_launcher_background) не найден./app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:4: AAPT: ошибка: ресурс mipmap / ic_launcher_foreground (он же com.example.app:mipmap/ic_launcher_foreground) не найден.
<platform name="android">
...
<resource-file src="res/android/mipmap-anydpi-v26/ic_launcher.xml" target="app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" />
<resource-file src="res/android/mipmap-anydpi-v26/ic_launcher_round.xml" target="app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml" />
..
</platform>
Оба ic_launcher.xml
& ic_launcher_round.xml
содержимое
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
Папка values
(res / android / values) содержит colors.xml, ic_launcher_background.xml, strings.xml, styles.xml
Но нераспознан.