관리 메뉴

드럼치는 프로그래머

[안드로이드] Manifest merger failed 본문

★─Programing/☆─Android

[안드로이드] Manifest merger failed

드럼치는한동이 2018. 3. 5. 14:18

[출처] http://ghj1001020.tistory.com/472


해당 URL의 소중한 자료 정독 후 프로그래밍 학습에 도움이 되었음을 밝힙니다.



에러내용


Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:7:9-43 is also present at [com.pnikosis:materialish-progress:1.0] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher).




해결내용


tools:replace="android:icon" 추가


1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<manifest ...
          xmlns:tools="http://schemas.android.com/tools"
          ...>
 
    <application
        android:icon="@mipmap/ic_launcher"
        ...
        tools:replace="android:icon">
        ...
    </application>
 
</manifest>
cs


결과



Comments