Cannot use android: icon = "@ mipmap / ic_launcher" in Manifest after play services 7.5.0

I recently updated game services using dependencies
compile 'com.google.android.gms:play-services:7.5.0'
My application launcher is in @mipmap/ic_launcher" , but it shows an error in AndroidManifest.xml . Should I put this icon again in drawable or another?
Help me find a solution.

UPDATE: Here are the messages from Android Studio

 Error:(17, 9) Execution failed for task ':app:processDebugManifest'. > Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:17:9 is also present at com.pnikosis:materialish-progress:1.0:13:9 value=(@drawable/ic_launcher) Suggestion: add 'tools:replace="android:icon"' to <application> element at AndroidManifest.xml:14:5 to override Error:(17, 9) Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:17:9 D:\3cworkspace\PeakPerformance\app\src\main\AndroidManifest.xml 
+8
android google-play-services drawable mipmaps
source share
2 answers

add followind line to application tag

  tools:replace="android:icon" 

Also import xmlns:tools="http://schemas.android.com/tools" to display

+21
source share

under the application tag in the manifest, worked for me.

 androidtools:replace='android:icon' android:name=".ApplicationSubClass" android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light" tools:replace="android:icon" > //HERE 
+1
source share

All Articles