Is it possible to create a background service using PhoneGap to display notifications at x intervals

I work in a mobile native application that requires a background scan of the necessary data and displays notifications to the user at certain intervals.

But I'm not sure how to achieve this?

Thanks in advance

+4
source share
1 answer

You create a background service as usual in Android. Then you need to create a Plugin to call your service for the specified interval to request data.

+2
source

All Articles