Reputation: 514
I have setup Firebase cloud messaging for my app, but the icon is not changing to what I need it to be. I have looked at the Developer Documents, as well as followed this post : Q Change notification icon in Android Studio but still it has not changed. I want to change the icon for firebase as well as every notification that is shown by the app, please help!
Thanks!
Upvotes: 1
Views: 435
Reputation: 341
This answer should work for Firebase notifications: Q Change notification icon in Android Studio
For notifications that you create yourself, just use Notification.Builder#setSmallIcon/setLargeIcon
:
Notification notification = new Notification.Builder(mContext)
...
.setSmallIcon(R.drawable.new_mail)
.setLargeIcon(aBitmap)
.build();
Upvotes: 3