Home > Enterprise >  Xamarin.FFImageLoading SVG Not Working on Android 11 & 12
Xamarin.FFImageLoading SVG Not Working on Android 11 & 12

Time:05-13

Android Target to 11 Version

Code:-
<ffimageloadingsvg:SvgCachedImage HeightRequest="12" Source="resource://DemoApp.Assets.Images.svgImage.svg" BackgroundColor="Transparent" Aspect="Fill" HorizontalOptions="FillAndExpand" VerticalOptions="Start"/>

I set the Svg on Embedded Resource

SVG Working Fine Except Android 11 & 12 please any one help to why not showing svg on android 11 & 12

CodePudding user response:

It seems that it's a special issue on the Android 11, and the solution is add the reference of the skiasharp or update the nuget package skiasharp both in the android part and the forms part.

You can check the following link:https://github.com/luberda-molinet/FFImageLoading/issues/1526

  • Related