I have an App which constantly polls for location when its in travelling mode. My issue is that once the screen is locked, the App can no longer access the geolocation from the phone.
I have managed to find this plugin but it requires I purchase it for the capability to work in Android. http://shop.transistorsoft.com/pages/cordova-background-geolocation-premium
Does anyone know if there is a free option that i can use to get location to successfully poll in an Ionic / Cordova application while the screen is locked?
Have you looked at NG-Cordova?
first add ng-cordova to your project:
Then inject it:
Here is a plugin you could try: http://ngcordova.com/docs/plugins/backgroundGeolocation/
just install the plugin:
then bind it to a controller:
Another option is to use a partial wakelock on Android to keep your app alive while in the background (screen off or switched out of foreground). You'd need to do this via a plugin, but it would have the same effect as a background service, keeping you app alive to receive location updates while in the background.
See my old answer here for the source code for a Cordova 2.0 plugin (it will need updating for Cordova 3+).