gautamlakum
gautamlakum

Reputation: 12015

android services to get current location

I have started work on app that requires user's current location. I looked for some services for this. I got Android Location Service (link1, link2) and skyhook sdk. Does anyone know which one is better and stable? Please recommend me one.

Upvotes: 2

Views: 874

Answers (1)

x90
x90

Reputation: 2170

For receiving location info you can use standard api (your link1 and link2). But strategies of receiving depends on what you need, get location or listen location.
You also can look at this android training. In this training you can see how to use new Location api provided by Google in google services lib. This lib provide a lot of features details of which you can find here.
If you have simple location acquiring logic - best way to use standard apis (like in link1 and link2).

Upvotes: 1

Related Questions