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
0
votes
1 answer

Cordova local notification is not working in worklight 7.0

I wanted to integrate local notification in worklight. So i used https://github.com/katzer/cordova-plugin-local-notifications plugin for local notification. When i try to integrate with worklight its not working. I followed steps mentioned in this…
0
votes
2 answers

Objective c: how to execute a function when app is in the background/killed automatically based on time Intervals

I need to execute a function when app is in the background or even when is killed by the user, automatically based on time Intervals Requirement: After user registered (Ex registered date Jan-1, 2015) , I need to change the status of a functionality…
iOS dev
  • 2,254
  • 6
  • 33
  • 56
0
votes
0 answers

Localnotification shows only two Actions?

I want to fire a simple local notification and display three actions. I followed different tutorials (e.g. https://gist.github.com/kristopherjohnson/06bab43acbd9cebe5fd7 or…
Saerdn
  • 218
  • 2
  • 17
0
votes
2 answers

UILocalNotification Or EventKIt

Is there a way to trigger some kind of task on the base of date event .My problem is that i want to play sound (alarm) on specific date it does work fine by using UILocalNotification, but it plays s short sound , and i want to play an infinite sound…
0
votes
1 answer

Best method to implement Android client-server communication with realtime local notification

I am creating an app where user data should be saved in my database. When a user submit certain data like "name" "personal note" I need to get a real time notification from my MySQL database. How do I implement this?
0
votes
0 answers

Realtime notification to me from database

I have an android app which sends data submitted by users to my database hosted in a server. Every time data is stored in my SQL database.. I need to receive[realtime] the data on my pc or cellphone from the sql database every time a submits some…
0
votes
1 answer

How to tackle an app that fires recurring local notifications but on a changing schedule?

I'm creating an app that needs to fire local notifications for sunrise and sunset on a daily basis. Sunrise and sunset times changes every day. I want the registering of the local notifications to take place even if the user didn't open the app…
0
votes
1 answer

Set specific data & time for repeat interval using cordova Local notification & ionic

Could anyone tell how set date and time for corodova local motification? Example: For daily notification alert i want set date and time. Is it possible in local notification.? Sample code: $cordovaLocalNotification.schedule({ id: 1, …
Praveen JP
  • 105
  • 1
  • 1
  • 13
0
votes
2 answers

I can't cancel a notification using the cordova local notification plugin

I have the following code to add a notification: $cordovaLocalNotification.add({ id:"my-notification", repeat:"daily", date:time, message:"a message" …
William Neely
  • 1,923
  • 1
  • 20
  • 23
0
votes
1 answer

Local Notifications are hidden onPause and onResume

I am using the local notification plugin for Cordova. When the app goes to the background on Android and when the app comes to the foreground the notifications are hidden from the notification area. I can still get them from getById. How can I get a…
Dinkheller
  • 4,631
  • 5
  • 39
  • 67
0
votes
1 answer

How to show notification in notification area in Cordova?

How to send notification in notification area using Cordova without push-notification service like: window.plugins.PluginName.Notify('Title','');
JavaScript Linq
  • 2,605
  • 3
  • 13
  • 12
0
votes
0 answers

Local notifications plugin cause the Ionic app to crash on device

I'm developing an Ionic app and I'm using Phonegap Build to build it. I want to be able to schedule local notifications. For that reason I decided to use the following…
0
votes
1 answer

iOS: calling a method inside a class

I am making an iBeacon scanner plugin to use in different projects. in myBeaconScanner.m file: -(id)initWithUUID:(NSString *) _uuid{ self = [super init]; self.locationManager = [[CLLocationManager alloc] init]; …
Kourosh
  • 608
  • 2
  • 14
  • 34
0
votes
2 answers

Multiple Local Notifications glitch from didEnterRegion:

I'm Currently monitoring several locations that are backed by core data. In other words, I have set up a for loop that loops through all of the stored entities in core data and creates a monitored region for all of the entities. The problem here…
Alex Blair
  • 584
  • 1
  • 4
  • 19
0
votes
1 answer

Cordova plugin Android local notification use contact image

I am using the following - Cordova 3.7.0 - Android (21) - local notification plugin - grabbing contacts via contacts plugin from the contacts I take the contact picture uri which looks like content://com.android.contacts/contacts/2/photo when I…
Dinkheller
  • 4,631
  • 5
  • 39
  • 67