I am trying to change the push notification icon when I send a notification from firebase console(while app is in background). I've added the following code to my manifest file:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/custom_notification_icon" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/color_accent" />
Unfortunately, it is still showing the launcher icon. How to solve this?
NB: I am using Firebase SDK 10.2.0
Additionally, How can I customize the statusbar icon when a notification has come ? Please help me guys.