Very long vector path

Vishal Jha
2 min readDec 6, 2020

Problem:

This lint warning is shown by Android Studio for SVG

Very long vector path (1034 characters), which is bad for performance. Considering reducing precision, removing minor details or rasterizing vector.

Wrong Solutions:

1. Add tools:ignore=”VectorPath”

<path
android:pathData="m512,256c0,141.387…

--

--