Android Alarm / IOS with Phonegap

Asked

Viewed 838 times

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 send an audible warning and display a notification message to inform that the event is to occur, this plugin would need to work on android/Ios with Apache Cordova.

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

  • To make the service work in the background you can use the https://github.com/Red-Folder/Cordova-Plugin-BackgroundServiceplugin

1 answer

2


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

The essential goal of local-Otifications is to allow an application to inform its users that it has something for them - by example, a message or a future commitment - not when the application runs in the background. They are programmed by a app and delivered on the same device.

As supported platforms sane:

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

Engine: (>= 3.0.0)

Some examples can be seen here.

  • 1

    Thank you Qmechanic73.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.