I have made an app with notifications using flutter_local_notifications and it worked fine on Android Kitkat. However, on Android Oreo, it doesn't display the icon. It just displayed a colored grey box icon.
This is the line of code where I initialized the icon which will be used by the notification to display:
var initializationSettingsAndroid = new AndroidInitializationSettings('@mipmap/ic_launcher');
I can confirm that I have all icons present for different densities in my drawable resources.
But I can't figure why it doesn't display on Android Oreo.
I would appreciate any form of help. Thanks.