When I use call getFromLocationName I get an IOException with description \"grpc failed\".
Code that\'s ran
@Override public void onMapReady(GoogleMa
Like Google writes, You should not call this method on UI thread
https://developer.android.com/training/location/display-address#java
I fixed this issue by running this operation in a new Thread, and then if I need to update some UI view I'll do it on runOnUiThread
Thread
runOnUiThread