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
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.
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.