Android Kotlin Geocoder DEADLINE_EXCEEDED on Android when getting location coordinates/adresses

1k Views Asked by At

In my android app i am trying to get the address from lat lng using the Geocoder using getFromLocation method and the GeocodeListener but sometimes the app is getting crashed

Crash Log

Caused by java.io.IOException: egma: DEADLINE_EXCEEDED: Deadline CallOptions will be exceeded in 4.959774531s. 
       at android.location.Geocoder$GeocodeListener.getResults(Geocoder.java:246)
       at android.location.Geocoder.getFromLocation(Geocoder.java:134)

Code

geocoder.getFromLocation(
  latLng.latitude,
  latLng.longitude,
  1,
  object : Geocoder.GeocodeListener {
            override fun onGeocode(addresses: MutableList<Address>) {
              val addressLine = addresses.first().getAddressLine(0)
                   onAddressResult(addressLine, null) // callback
             }

             override fun onError(errorMessage: String?) {
               super.onError(errorMessage)
                  onAddressResult(null, errorMessage)
             }
  },
)

What is the reason for the crash. how can i avoid it?

1

There are 1 best solutions below

1
On

In Kotlin, you can use coroutines to perform network operations asynchronously so that the main thread doesn't block, I solved it like this

      addressesname = addressesname(lat, lng, geocoder)

      private suspend fun addressesname(lat: Double, lng: Double,geocoder: Geocoder) = withContext(Dispatchers.IO) {
         var addressesname = ""
         try {
              // For Android SDK < 33, the addresses list will be still obtained from the getFromLocation() method
              val addresses = geocoder.getFromLocation(lat, lng, 1) as MutableList<Address>
              addressesname = addresses[0].getAddressLine(0)

         }catch (e :Exception){
              showErrorSnackBar("Tienes latencia, revisa tus datos moviles")
         }
         addressesname
      }