Android / IOS alarm with PhoneGap

1

Good evening, I'm just developing an application for parties. In this application lists the city parties with date and time, tickets and tals .. I'm having a hard time creating a feature, I need to notify the user that the party will start with the advance requested by him.

I need the plugin to issue a beep and display a notification message to inform you that the event is about to occur, this plugin would need to work on android / ios with Apache Cordova.

  

The plugin should notify even if the application was closed, as if it were an android service.

    
asked by anonymous 23.02.2015 / 03:28

1 answer

2

A plugin that can be used is Cordova Local-Notification .

  

The essential purpose of local-notifications is to let an application tell its users that it has something for them - by   example, a future message or commitment - not when the   application runs in the background. They are programmed by a   application and delivered to the same device.

supported platforms are:

  • Android ( > = 7 )
  • iOS
  • Windows Phone 7/8
  • BlackBerry 10

Engine: Cordova ( > = 3.0.0 )

Some examples can be seen here .

    
23.02.2015 / 03:45