Reputation: 593
I have created an app icon with a blue background colour but when I run the app on a real device the background colour has changed. It works fine on an emulator.
The preview for ic_laucherer.png
shows this:
But on my phone it shows as:
Is there any way to stop this?
Upvotes: 0
Views: 969
Reputation: 1420
Went through the same issue so I can help you.
Follow below steps :
Basically it will create all type of app icons.
Upvotes: 0
Reputation: 593
I found the problem was in my manifest file. I had the following line:
android:icon="@mipmap/ic_launcher_foreground"
which I changed to:
android:icon="@mipmap/ic_launcher"
Upvotes: 2