Ivan
Results
1
comments of
Ivan
I had the same issue on emulator and some samsung devices. Forcing okhttp client to use HTTP/1.1 helped me to avoid such exceptions. `new OkHttpClient.Builder()` ` .protocols(Arrays.asList(Protocol.HTTP_1_1))` ` .build();` It...