Невозможно использовать android:icon="@mipmap/ic_launcher" в сервисах Manifest после воспроизведения 7.5.0
Я недавно обновил сервисы воспроизведения, используя зависимостиcompile 'com.google.android.gms:play-services:7.5.0'
Мой значок запуска приложения находится в @mipmap/ic_launcher"
но это показывает ошибку в AndroidManifest.xml
, Должен ли я снова поместить этот значок в drawable
или еще?
Помогите мне найти решение.
ОБНОВЛЕНИЕ: Вот сообщения от Android студии
Error:(17, 9) Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:17:9
is also present at com.pnikosis:materialish-progress:1.0:13:9 value=(@drawable/ic_launcher)
Suggestion: add 'tools:replace="android:icon"' to <application> element at AndroidManifest.xml:14:5 to override
Error:(17, 9) Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:17:9
D:\3cworkspace\PeakPerformance\app\src\main\AndroidManifest.xml
2 ответа
Добавить следующую строку в тег приложения
tools:replace="android:icon"
Также импорт xmlns:tools="http://schemas.android.com/tools"
проявить
Под тегом приложения в Manifest, у меня сработало.
androidtools:replace='android:icon'
android:name=".ApplicationSubClass"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
tools:replace="android:icon" > //HERE