0

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

Manifest merger failed : Attribute application@icon value=(@mipmap/appiconnew) from AndroidManifest.xml:13:9-42 is also present at [com.pnikosis:materialish-progress:1.0] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher). Suggestion: add 'tools:replace="android:icon"' to element at AndroidManifest.xml:11:5-136:19 to override.

Can Anyone Help Please ?

DevMobApp
  • 115
  • 1
  • 2
  • 10
  • https://stackoverflow.com/questions/24506800/android-studio-gradle-icon-error-manifest-merger this might be of help. – lidkxx Feb 23 '18 at 12:38

2 Answers2

0

Just add following in tag of manifest file:

<application
    android:name=".MainApplication"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    tools:replace="android:icon">
Umair Adil
  • 968
  • 1
  • 10
  • 24
0

use this one on Application tag in AndroidManifest.xml

 <application
     tools:replace="android:icon"
</application>
SHUBHAM SONI
  • 71
  • 2
  • 9