Java – Android background service plugin in phonegap

Android background service plugin in phonegap… here is a solution to the problem.

Android background service plugin in phonegap

I’m new to Phonegap. I want to create a plugin in Phonegap using the Android background service.
I need to call the service continuously every 5 seconds. Please assist me in doing this.
Thank you for your interest.

Solution

I’m not sure exactly what you need, but I did something similar by creating a phonegap plugin that writes data to a static class where I store information. Then, whenever I need to access it from JavaScript, the plugin simply queries the static class. Is that what you’re trying to achieve?

Related Problems and Solutions