I have an SVG vector drawable button.xml
that I want to use as an Icon for a notification builder in either of the setSmallIcon
s ..
new NotificationCompat.Builder(this, "arbitrary")
.setSmallIcon(IconCompat icon)
.build();
new NotificationCompat.Builder(this, "arbitrary")
.setSmallIcon(Int icon)
.build();
I’ve researched and have found nothing.
2