In my app I am using the getFromLocationName, and it has been working in the app until recently, now all of a sudden I am getting is "Service not available".
The exception says: Geocoder.getFromLocationName(Geocoder.java:178)
This is the code I am using:
Geocoder coder = new Geocoder(this);
List<Address> address = null;
try {
address = coder.getFromLocationName(navAddr,5);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
To be honest I do not know if has stopped working after I have switched to release build.
I hope someone can point me to what I can do to fix this.