Im getting this error after installing modernHttpClient component, i guess is a conflict with Picasso library component because both use okHttp? how i can resolve this?
I just want it for a simple image download:
var httpClient = new HttpClient(new NativeMessageHandler()); byte[] bytes = null; bytes = await httpClient.GetByteArrayAsync(url);
Complain to Picasso that they hard reference OkHttp instead of depend on the OkHttp Nuget.
Answers
Complain to Picasso that they hard reference OkHttp instead of depend on the OkHttp Nuget.
i will download the image with picasso then with something like this
thanks