hannesa2 / paho.mqtt.android

Kotlin MQTT client for Android
405 stars 92 forks source link

How to remove notification from status bar? #250

Open himanshu-my opened 2 years ago

himanshu-my commented 2 years ago

I have attached a notification when starting the service like below

mqttClient!!.setForegroundService(notification.build(), notificationId)

Now my issue is when I disconnect and close the mqtt connection still notification not removed from the status bar. Please suggest how can I remove that notification after mqtt disconnection.

hannesa2 commented 2 years ago

When you do this

mqttClient!!.setForegroundService(notification.build(), notificationId)

you can remove it with this

val notificationManager = NotificationManagerCompat.from(context)
notificationManager.cancel(notificationId)
himanshu-my commented 2 years ago

I have used

val notificationManager = NotificationManagerCompat.from(context) notificationManager.cancel(notificationId)

and

val notificationManager = MyApp.appContext. getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager notificationManager.cancel(notificationId)

    this as well, but still notification is not removing. 
Monika-Paliwal commented 2 years ago

Please Reopen this issue , this issue is still occurring and also provide the exact solution for it

hannesa2 commented 2 years ago

and also provide the exact solution for it

This repo comes with a contribution model. I'm not the only one who can contribute

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. Please comment here if it is still valid so that we can reprioritize. Thank you!

hannesa2 commented 1 year ago

Sorry for the late response. Please use https://github.com/hannesa2/paho.mqtt.android/releases/tag/3.6.0-beta7 and please tell me, how it works after several connect/disconnect. I didn't tested this.

Elswah commented 7 months ago

i tested it not working properly and application crash

hannesa2 commented 7 months ago

i tested it not working properly and application crash

Please show me the crash. I guess a crash would be found by CI, but maybe I'm wrong