Cordova geolocation plugin not getting location from GPS for Android
in my Cordova application, I am trying to get user's location from GPS. For that I am using Geolocation plugin . I need to get location after every 10 seconds. I am doing something like: navigator.geolocation.getCurrentPosition( $rootScope.onSuccessForLocation, $rootScope.onErrorForLocation_High, {maximumAge:600000, timeout:7000, enableHighAccuracy: true} ); Now when this code runs, it gives me location in callback method but its not coming from GPS as when app starts the GPS icon should appear and starts blinking in status bar. But it is not happening. I had an old app which is using same