I have used the visual studio with version 16.2, yesterday I updated Visual Studio to the new 16.3 version and now, all the images that have an url source, don't show it on Android. Before to update the visual studio version, all the images work perfectly.
In the iOS emulator, I can see the images, but Android no...
Can anyone help me???
Answers
what is the version of your android?
I had the same problem with android pie and I solved it by adding this line
<uses-library android:name="org.apache.http.legacy" android:required="false" />
in the AndroidManifest.xmlsource: https://developer.android.com/about/versions/pie/android-9.0-changes-28#apache-p
@Arselan Android 9 and I tried your line and VS returns me
unexpected element uses-library found in manifest
@danielparedes97 do you put it inside the
<application></application>
tag ?@Arselan Yes, but at the moment of compiling launch a build apk error
The url picture is Https or http?
@Ludo11100 Https
This can solve your problem:
client = new HttpClient(new System.Net.Http.HttpClientHandler());
I'm having this exact issue, where you able to resolve it?
@MaximillianCoburn I had to downgrade the Visual Studio version, and now I can see the images perfectly
@danielparedes97 thank you for letting me know, do you plan on making a bug report of this on the Visual Studio bug tracker?