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

Ionic Framework Android Build Failure

I'm Facing an Issues while Building an android app on an Ionic framework like follows. Currently working on Ionic LocalNotifications. By following this link. https://github.com/digitaldrummerj-ionic/ionic-local-notifications-sample
0
votes
2 answers

UILocalNotification on Fri and Sat

How do you set a UILocalNotification to fire every Fri and Sat at 8pm? Thanks
0
votes
3 answers

Set Local Notification from Selecting Table cell

Actually This question has been asked so many Times. But I have Confusion Among those. I have tried this. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if([[cell.btn…
Narendra Pandey
  • 377
  • 9
  • 28
0
votes
1 answer

How to add cronjob in Cordova App

I use Phonegap/Cordova for developing mobile app. In the application I set local notifications once each day. But notification time changes every day. So I need to set local notification with a cronjob for each day. How can I add cronjob with…
Alexander
  • 1,720
  • 4
  • 22
  • 40
0
votes
1 answer

Error while compiling "ant" build

Recently I installed cordova-plugin-local-notifications plugin in my cordova app. I am getting following error while running ant debug install command: -compile: [javac] Compiling 42 source files to…
varunvlalan
  • 940
  • 10
  • 23
0
votes
1 answer

Swift: Schedule a local notification for a specific time on weekdays

Hi I am trying to schedule a local notification to fire at 9:00am on weekdays (mon - fri) and cant seem to find any documentation on how to do this. Here is my code so far: @IBAction func scheduleLocal(sender: UIButton) { guard let settings =…
Ryan.H
  • 361
  • 4
  • 19
0
votes
1 answer

how to schedule local notification every day 10 o'clock in windows phone app RT

I want to schedule local notification everyday 10 o'clock. DateTime EventDate = new DateTime(2016, 02, 11, 17, 52, 20); TimeSpan NotTime = EventDate.Subtract(DateTime.Now); DateTime dueTime = DateTime.Now.Add(NotTime); …
0
votes
1 answer

Iphone simulator : Local Notification fires twice but never displays?

Is there a bug with the simulator and Local Notifications or am I doing something incorrectly. // on button click fire off notification for 30 seconds from now -(IBAction)scheduleNotification{ UILocalNotification *localNotif =…
Ronn
  • 1,753
  • 4
  • 28
  • 38
0
votes
1 answer

Swift: Creating a repeating local notification between a set time each day

I am trying to create a repeating local notification that will notify the user every hour between a set time every week day (e.g. 9-5 monday-friday) but after searching cant find any documentation on how to implement this.
Ryan.H
  • 361
  • 4
  • 19
0
votes
1 answer

Local notifications in Windows Phone 8

Does windows phone 8 have anything like Local Notifications in android? If not, how can we add an item to system tray list?! Thanks for any advice.
0
votes
1 answer

How to schedule a local notification in windows phone app 8.1 rt?

In my application i want to schedule a local notification for a particular time. This local notification need to send when the app is closed too. (back ground Task ) I am using win RT, not silver light. Thank you in advance.
0
votes
2 answers

Alarm Local Notification at IOS 7 Locked screen Objective-C

I'm practicing to develop Alarm app like Alarm on IOS 7. Alarm time up on IOS7 However, I stuck at local notification at locked screen, it just like this. My notification Some code I did: In my AppDelegate.m My code [[UIApplication…
AbleTran
  • 1
  • 1
0
votes
1 answer

How to make a day go 24 hours back given date and a time?

I'm new at notifications and as well as working with dates and time. I've tried finding things like mine but i can't find anything that changes the time and not just the date. var eventTime = Event.date; var _24_hours_before_event = new…
0
votes
1 answer

cordovaLocalNotification:click state.go does not work

I trying to set local Notification for my ionic cordova app , but when i click on the redirect to home page does not work : this is my controller : app.controller('notificationCtrl', function($scope, $rootScope, $ionicPlatform,…
0
votes
0 answers

ios9 local notifications do not fire after app update

Each time the app is starting ( Each time the app is going to background or going to be terminated (didEnterBackground or WillTerminate) I schedule notifications: Cancel existing ones: [[UIApplication sharedApplication]…