Questions tagged [localnotification]

A Cordova/PhoneGap plugin to create local notifications on iOS devices using hybrid apps

A Cordova/PhoneGap 3.0.0+ plugin to create local notifications on iOS, originally by Olivier Lesnicki. This may be used to schedule notifications or other functions that trigger at some point in the future.

More info at https://github.com/hiattp/Phonegap-LocalNotification

626 questions
3
votes
5 answers

Cordova Local Notification Android Plugin 2.2 upgrade

I'm working on a "Reminders" application on Android using Phonegap[Cordova 2.2]. The user enters a specific date for his reminder and I'm supposed to notify him on time. I use Android's Notification Plugin but it supports earlier versions of phone…
3
votes
2 answers

Local Notification alternative week repeat

I Have two notification and I want to repeat it alternative week. E.g. One notification set on 1st week's monday and it should repeat on 3rd week's monday. Second notification set on 2nd week's tuesday and it should repeat on 4th week's…
Chirag
  • 31
  • 2
3
votes
2 answers

Trying to get the Android LocalNotification plugins for phonegap to work in cordova-1.6.0

I'm trying to upgrade a phonegap-1.4.1 project that uses the LocalNotification plugin for Android to cordova-1.6.0 I found this link here: https://github.com/davejohnson/phonegap-plugin-facebook-connect/pull/109 Where it says, For Android: use…
J-L
  • 189
  • 1
  • 8
2
votes
1 answer

Register for Local Notification

I am developing an IOS application with phonegap and need to set local notification for it which will repeat on every friday and specified time Also there is requirement that user will decide to receive or not the local notification
user1244533
  • 101
  • 1
  • 4
2
votes
3 answers

scheduled local notification is not being stored in the scheduledLocalNotification array

I am currently scheduling local notifications to appear once per day at 6PM if a user has not already opened the app that day. If the user has already loaded the application, then I want to cancel the notification for that day and schedule a new one…
2
votes
0 answers

LocalNotification work in web, but not in iOS device ( Ionic capacitor )

I run this code and simulate in browser, it just work perfectly which it'll remind me with notification for the exact time and date. but it didn't work when i simulate this using device…
2
votes
1 answer

Flutter local notification not work in latest version

I am trying to implement local notification which works perfect before I upgrade my app version as below: FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin; showNotification() async { var android = AndroidNotificationDetails( …
2
votes
1 answer

How to implement a local notification in flutter web

I need to show a notification on flutter web receiving from an MQQT broker , while chrome is minimized or is on the other tabs .( like Local Notification in android or ios )
2
votes
2 answers

Capacitor IONIC 6 : Local Notification scheduling every day and on particular time

I would like to schedule a Local Notification every day at a particular time. According to capacitor docs https://capacitorjs.com/docs/apis/local-notifications I have implemented it, the following pattern. LocalNotifications.schedule({ …
2
votes
1 answer

is there any way to schedule multiple notifications at same time using flutter local notification

I use flutter local notification package to schedule notification in my application but it only schedule one notification at a time if i set two notification on different time then only one notification is displayed here is my code of scheduled…
2
votes
0 answers

Flutter: Awesome Notification Choose Sound from storage

I am using flutter awesome notification and I want user can choose custom sound from their storage. Is it possible to make it? Here is my code to initialize the awesome notification plugin. AwesomeNotifications().initialize( …
2
votes
1 answer

Local Schedule Notification in Flutter

I want to trigger a local Notification daily on a specific time(Chosen by user). Similar to alarm type. With the help of date picker. User must select the days and time, it should push a local Notification on that time daily.
2
votes
0 answers

Xamarin.forms NotificationTapped event not fired when tap on notification

I am using Plugin.LocalNotification to create notification after file is downloaded. But my issue is I am not able to open that file by tapping notification. Instead it navigates to MainPage(Login Page in my case) public App() { …
Ruhika
  • 67
  • 7
2
votes
0 answers

Optimal way of repeating the same notification every day but in different time in ionic capacitor LocalNotification

I need to create notification every day but at different times, the content is all the same but the only difference is the timing. I am using LocalNotification of Ionic Capacitor. Can anyone tell me the optimal way to do this task?
2
votes
1 answer

Capacitor / Ionic / Vue Local Notification eventlistener

I'm trying to get Local Notifications working in an Ionic Vue app (using capacitor). I did get scheduling notifications working, but now i want to listen to clicks on the notification. in main.js I bind LocalNotifications to…