Anybody have idea how can we remove notification from application programmatically which is called using Pending intent.
I have used to cancel notification using fol
I believe the most RECENT and UPDATED way of doing (Kotlin and Java) this should be done as:
NotificationManagerCompat.from(context).cancel(NOTIFICATION_ID)
Or to cancel all notifications is:
NotificationManagerCompat.from(context).cancelAll()
Made for AndroidX or Support Libraries.