In my app Location Service is not returning address and locality for my current lat-long
List<Address> addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 10);
for (Address address : addresses) {
textOut.append("\n" + address.getAddressLine(0));
The above code keeps on running forever while when I just want to display lat-long it works perfectly