Does anyone by any chance know why I keep seeing c...
# android
z
Does anyone by any chance know why I keep seeing crashes related to
Bad notification posted from package: x Couldn't create icon: StatusBarIcon
on Android 8.1? Im not using any vector-drawables. The icons are all white icons in
.png
files.
😶 2
I set the icon with
setSmallIcon
. Crash seems to be unique to Android 8.1.0 Nexus 5X.
Copy code
val notification = NotificationCompat
    .Builder(
        this, //Service
        NOTIFICATION_CHANNEL
    )
    .setSmallIcon(R.drawable.ic_notification)