I'm having a problem with my app's notification icon (in Android 7). Instead of showing the full icon image, the system displays only the background of the icon (see attached image). I guess it's something with the icon, any idea what should I fix? Thanks!
Edit: code example
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentTitle(title)
.setContentText(message)
.setSmallIcon(R.mipmap.ic_launcher)
.setAutoCancel(true)
.setOngoing(false)
.setTicker(message)
.setContentIntent(pendingIntent);
android.app.Notification notification = new NotificationCompat.BigTextStyle(builder)
.bigText(message).build();