Hey!
I have an ImageSource in my app which is loaded from an URI using the following code:
img.Source = ImageSource.FromUri(new Uri("https://crafatar.com/renders/head/" + Data.selectedPlayer.uuid + "?size=72"));
Example URL: https://crafatar.com/renders/head/d0bf98e6-968b-4f6a-ab84-b1ea57076706?size=72
This works fine on iOS, but android, the image is not displayed at all. Anyone knows why?
~Luca