I am using Picasso to load a graphic from remote server. Below is the code:
return Picasso.With(context)
.Load("https://exampledomain.com")
.Placeholder(Resource.Drawable.icon_placeholder)
.Error(Resource.Drawable.icon_error)
.Get();
I intermittently would have crash with message:
Java.Lang.RuntimeException: android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
and also:
java.net.UnknownHostException: Unable to resolve host "exampledomain.com": No address associated with hostname
NOTE - since the crash happened few days ago, i have not been able to reproduce this crash on the app.
Anyone have same problem with a solution they could kindly share?