Are there any special guidelines to put launcher icon in Android 7.1.1 ?
Because I added a logo in manifest file and its showing in all Android versions but not in my phone. Anyone got a clue?
In Manifest.xml, please check have to set icons for both android:icon="@mipmap/ic_app_icon"
and android:roundIcon="@mipmap/ic_app_icon"
:
Here is the full code :
<application
android:allowBackup="true"
android:icon="@mipmap/ic_app_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_app_icon"
android:supportsRtl="true"
android:theme="@style/AppTheme">