It turns out that Android uses different notification icons for the status bar and for the drawer notification panel. NotificationCompat.Builder has setSmallIcon method and setLargeIcon method to handle each case, but AzurePushNotificationPlugin only allows to set IconResource property which is mapped to setSmallIcon as seen here. It would be great too have a way to set the large icon too.
It turns out that Android uses different notification icons for the status bar and for the drawer notification panel.
NotificationCompat.Builder
hassetSmallIcon
method andsetLargeIcon
method to handle each case, but AzurePushNotificationPlugin only allows to setIconResource
property which is mapped tosetSmallIcon
as seen here. It would be great too have a way to set the large icon too.Thanks