Service for mobile devices

In the past few days, I have been working on two projects: one of them was a mobile application (created using JQuery mobile and Phonegap), and the other was a Windows service.

I was wondering if you could create a service for a mobile device using jQuery and Phonegap, such as technology . With a service, I mean a service, such as the Windows Service, which will run in the background, the device will start loading, etc.

If Yes then { HOW ? please share some resources and knowledge to chew on } If No then { what the best way to develop a Mobile device service (platform dependent) ? } 
+4
source share
1 answer

Unable to create device services using jQuery and Phonegap. The reason is that you cannot run Javascript code in the backend as a service. The phone book simply displays the content inside the webview, so the written Javascript code is limited only to this area.

What is the best way to develop a mobile device service (platform dependent)?

Immerse yourself in native development.

Read further this , another discussion of SO.

+1
source

All Articles