AndroidViewHover
AndroidViewHover copied to clipboard
Gradle build problem
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
+1 for this problem
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 It works! thx XD