0
На рассмотрении
The program ceased to keep location of GPS
The program ceased to keep location of GPS (Prestigio Multipad 7.0 Prime 3G)
Сервис поддержки клиентов работает на платформе UserEcho
This is strange. It looks that there are GPS coordinates but Google Geocoder wasn't able to download your city name (even country). This is very strange.
Yes, strange, because one of the updates to 3.1.0-3.1.2 the coordinates were determined and saved.
http://4put.ru/pictures/max/781/2399945.jpg
here's the logcat:
so gps is working fine but fuelio can't use the geocoder service (which should be on the phone and is probably part of the google service framework)
it used to work on my phone so i'm gonna dig a bit deeper
what fuelio could at least do is save the coordinates even if the service is not present and just not have a city name display?
[edit]
another possibility is to write a small async method that calls:
https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true
directly. this way there's no need for the service dependency
source: https://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding
There are many reasons for that: you are sharing IP and network with other users and you have temporary ban for location. You can't deal with it.
I had problems on my S2. On my Nexus 5, Galaxy Nexus or Transformer tablet everything is fine.
Probably after reboot - everything will be fine. I can't do it right now but there is whole story on android source project and StackOverflow.
I'm not using the most accurate position to save the point on map. I'm not using network provider.
Here's the link: https://code.google.com/p/android/issues/detail?id... (it's not resolved).
Reboot. That is the only one way I know for this issue.
i'm using a xiaomi mi-2s not connected to wlan
if you make sure that google service framework and google play services are running it works fine, but not all android devices have access to geocoder service.
maybe creating a method that directly calls the maps api will save you a lot of problems (mentioned in my edit above and in your issue link)