Svg.Skia can import Android VectorDrawable XML and render it through the same pipeline as regular SVG.
SKSvg.Load(path) auto-detects VectorDrawable XML.SKSvg.LoadVectorDrawable(...) loads it explicitly.SKSvg.FromVectorDrawable(string xml) parses raw XML content.SvgService.OpenVectorDrawable(...) and SvgService.FromVectorDrawable(...) are available at the document-model layer.The repository includes tests for:
Svg.Model.UnitTests includes a pinned Android attribute contract that checks:
That means unsupported features fail intentionally instead of silently producing partial output.
The tests explicitly reject unsupported cases such as:
android:tint,@color/accent.Use VectorDrawable support when you want one rendering stack for:
If the asset relies heavily on Android-only features outside the supported subset, treat it as a candidate for conversion to standard SVG first.