Android launcher icon still showing default in Android oreo

CLIFFORD P Y picture CLIFFORD P Y · Feb 6, 2018 · Viewed 21.6k times · Source

I Changed my application launcher icon using android studio 3.0.1

File -> Image Asset

In Android version 8.1 icon looks like below image

enter image description here

my AndroidManifest details

 <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:hardwareAccelerated="true"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

I double checked the icons.ic_launcher and ic_launcher_round are my new icons

Every help is appreciated,thanks.

Answer

sasikumar picture sasikumar · Dec 21, 2018

Best solution is delete mipmap-anydpi-v26 folder then app will take default icon. In android studio Project mode go to this package

res/mipmap-anydpi-v26

delete it and rebuild and Run program.