我最近使用依赖项更新了播放服务
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
答案 0 :(得分:22)
将followind行添加到应用程序标记
tools:replace="android:icon"
还要将xmlns:tools="http://schemas.android.com/tools"
导入到清单
答案 1 :(得分:1)
在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