So I have integrated Firebase Cloud Messaging in my Qt application and I am trying to set a custom icon for notifications (which by default displays a grayed out circle). I know that this question has been asked here before Notification Icon with the new Firebase Cloud Messaging system. Now I have followed the suggestions in the post (and other similar posts). In my manifest file I have added:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_stat_newspaper" />
I then created different icons according to the specification for custom status bar icons provided by Google (white on transparent background). My target SDK is set to 26. Despite this however, the notifications always display the default icon and not my custom icon. I am sending the notifications from the Firebase Console website. I know that some users suggested to use the API to send notifications since it seems to solve this issue, but is it possible to avoid this and manage to succeed with the Firebase Console?