SalmanNaghori
SalmanNaghori

Reputation: 163

Push notification icon is not displayed as expected on Android 13 and above. Instead, it shows a circle. How can I fix this issue?

I'm trying to display a custom icon for push notifications on all Android devices. However, on Android 13 and above, the notification icon is replaced by a white circle instead of the icon I provided.

Android 14 Screenshot Here, you can see a circle on the push notification.

Android 10 Screenshot Here, you can see the app's icon.

What might be causing this issue? How can I ensure the notification icon displays correctly on Android 13 and above?

Any guidance on how to fix this would be greatly appreciated!

Upvotes: 0

Views: 149

Answers (1)

Daksh Rawal
Daksh Rawal

Reputation: 530

android 13 and above have stricter rules for setting custom notification icon

these are few rules for notification icon

  • Transparent Background: Icons should not include a fully transparent background to avoid blending with the notification shade.
  • Monochrome: Notification icons should ideally be in a single color (usually white), with transparency to create the desired shapes.
  • Simplified Shapes: Icons should be simple and easily recognizable at small sizes.

refer the following links

link1

link2

Upvotes: 0

Related Questions