Android Gps Not Working In Service
Im trying to get my GPS working in a service but its not working. The GPS bit works on its own but not in the service. I have tried debugging with System.out.println() and fond wh
Solution 1:
A nice gps tracker guide: http://www.androidhive.info/2012/07/android-gps-location-manager-tutorial/
Just needed to add this.mLocation = location in onLocationChanged
He also wraps it into a service.
Post a Comment for "Android Gps Not Working In Service"