AndroidViewHover icon indicating copy to clipboard operation
AndroidViewHover copied to clipboard

Gradle build problem

Open mrThinBone opened this issue 9 years ago • 3 comments

Error:Execution failed for task ':app:processDebugManifest'.

Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:22:9-43 is also present at [com.daimajia.easing:library:1.0.0] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher) Suggestion: add 'tools:replace="android:icon"' to element at AndroidManifest.xml:19:5-72:19 to override

Please remove all ic_launcher in your com.daimajia.easing:library

mrThinBone avatar Oct 27 '15 03:10 mrThinBone

+1 for this problem

j796160836 avatar Nov 05 '15 06:11 j796160836

The solution is: You have to put your ic_launcher in a mipmap folder instead of drawable, than in your manifest file write this lines:

android:icon="@mipmap/ic_launcher" (instead of android:icon="@drawable/ic_launcher) tools:replace="android:icon"

HerczegDaniel avatar Dec 30 '15 00:12 HerczegDaniel

@HerczegDaniel It works! thx XD

Crepusculo avatar Aug 05 '16 11:08 Crepusculo