본문 바로가기

Android

[Android] Very Long Vector Path issue

SVG 를 Vector Drawable로 변환을 했는데 path가 너무 길다는 lint error가 나왔다.

이곳에 들어가서 왼쪽 이미지처럼 precision을 1로 만들어 준 후 이미지를 다운 받는다.

 

 

 

 

 

 

 

svg를 vector drawable로 변환 후에도 lint error가 나온다면, 다음 단계를 진행한다.

터미널로 가서 npm을 통해  avocado를 설치한다.

npm install -g avocado

 

설치가 완료되었다면 

avocado file_name.xml -o file_name.xml

성공적으로 됐을 경우 터미널에서 이런 메세지를 볼 수 있다.

file_name.xml:
Done in 32 ms!
4.792 Kb - 18.6% = 3.902 Kb

 

참고

 

“Very Long Vector Path” issues… and where to find them.

A few weeks ago I was working on the Android app we have at M-KOPA Solar and I experienced this frustrating situation where easy things…

medium.com

 

 

 

'Android' 카테고리의 다른 글

🐘 Groovy 에서 KTS로 전환하기  (0) 2023.03.03
Compose로 RecyclerView 대체해보기  (1) 2023.02.28
Hilt  (0) 2022.03.25
Vector Asset  (0) 2021.07.25
[Android UI] Drag & Drop  (0) 2021.06.07