에러내용
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 | <?xml version="1.0" encoding="utf-8"?> <manifest ... xmlns:tools="http://schemas.android.com/tools" ...> <application ... tools:replace="android:icon"> ... </application> </manifest> | cs |
결과
'IT > - 프로그래밍' 카테고리의 다른 글
Cocos 공이 튕기는 듯한 이즈액션 (0) | 2017.03.01 |
---|---|
Cocos 뒤로 이동하는 이즈액션 (0) | 2017.02.28 |
Cocos 고무줄에서 튕기는 것처럼 실행하는 이즈액션 (0) | 2017.02.27 |
Cocos 가속도를 주어서 실행하는 이즈액션 (0) | 2017.02.26 |
OpenCV 구조체(struct) 사용 예제 (0) | 2017.02.25 |