I need to send notifications from my application to the user.
I want to create a function in my code to send a notification to the user immediately. Therefore, I don’t want to schedule this notification. The notification only needs to show some information. If the user presses the notification, I want my application to open (I don’t have to get a function call for it).
I want to create notifications that occur at the status bar.
My goal is to send a notification when a condition occurs in the background of my application. I first want to try to get a notification in the status bar when a button is pressed in my application. I want this notification to be send locally. Therefore, there won’t be a server that manages these notifications.
I want to create notifications that occur at the status bar.
My goal is to send a notification when a condition occurs in the background of my application. I first want to try to get a notification in the status bar when a button is pressed in my application. I want this notification to be send locally. Therefore, there won’t be a server that manages these notifications.