Reputation: 3193
Application icon not displaying when app goes to background. Instead app icon it shows default android icon. Although i added app icon with transparent background . Any help is appreciated .
Manifest File :
<application
android:name=".TeenApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
Upvotes: 3
Views: 1299
Reputation: 15433
Remove ic_launcher_foreground.xml
from drawable-v24
folder
/res/drawable-v24/ic_launcher_foreground.xml
The image should be like this:
Upvotes: 1