I would like to create a notification in Android that has an expiration date, meaning that on a certain date, if it\'s not open, it will be automatically destroyed or remove
https://developer.android.com/reference/android/app/Notification.Builder.html#setTimeoutAfter(long)
you can specify a duration in milliseconds after which this notification should be canceled, if it is not already canceled.
from: https://stackoverflow.com/a/56072643/969016