-1

I am using firebase cloud messaging for push notification in the unity android app, I am getting a small icon fine but missing the right side app icon. Please check the attached image.enter image description here I am looking for a solution but did not find one. If one has a solution please share. Thanks in advance!

1 Answers1

0

Please share your notification code,

or try with below code smallIcon() method

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(baseContext).setLargeIcon(large_icon) .setSmallIcon(image);

Hope it will work..!!