1
I recently started a personal project using android, which uses the GPS_PROVIDER
to know the closest possible location.
My question is this: Is there any other api that I can use to replace this functionality?
I would like to have a possibility to better manipulate my location points without relying on internet, something like the same offline GPS, that we find in the play store, without relying on any network signal.
Why does it say GPS_PROVIDER depends on the internet? When you use Locationmanager.GPS_PROVIDER on
LocationManager#requestLocationUpdates()
what will be used to get the location is the GPS of the device.– ramaral