Reputation: 13
I'm in a very early stage of developing an android app that needs to make constant updates on the location of the user (near-exactly lat and long) while walking on the street. I'm not exactly sure if there is a class or method in Android that can help me (GPS?), or if I have to user something external, like Google Maps API (like geocoder).
So that's the question, Android can update my location or should i need the help of Google?
EDIT: I won't use this data to display it on a Google Map interface.
Upvotes: 1
Views: 488
Reputation: 2024
The Android framework provides a location
API - see Location Services and Location Strategies for more information.
To answer your question: Android can update your location.
Upvotes: 1