|
@@ -68,8 +68,8 @@ abstract class BaseNotification(private val notificationChannelId: String,
|
68
|
68
|
builder = NotificationCompat.Builder(c, channelID)
|
69
|
69
|
|
70
|
70
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
71
|
|
- builder.setSmallIcon(R.drawable.lollipop_logo)
|
72
|
|
- builder.color = -0xf58b01 // same color as Accent. Can't use c.getColor since it's API23+
|
|
71
|
+ builder.setSmallIcon(R.drawable.ic_notif_lollipop_icon)
|
|
72
|
+ builder.color = 0xf58b01 // same color as Accent. Can't use c.getColor since it's API23+
|
73
|
73
|
} else {
|
74
|
74
|
builder.setSmallIcon(R.drawable.logo_roundsquare)
|
75
|
75
|
}
|