My Android app uses Firebase Cloud Messaging for notifications. When notifications come in, the icon isn't turned white like the other icons.
I'm using targetSdkVersion 23
.
I have this in my manifest:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon" />
With a PNG file at android/app/src/main/res/drawable/notification_icon.png
.
How can I get the icon to behave normally?