Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to import multiple vector drawables to Android Studio project

I used https://inloop.github.io/svg2android/ to convert 50+ SVG's to XML as suggested in this answer. Now I have a .zip containing all the XML files. Where do I put them to be able to use them in Android Studio?

I know I can import one by one but that's what I'm trying to avoid in the first place.

like image 346
c0dehunter Avatar asked Jun 17 '17 10:06

c0dehunter


1 Answers

Just put the xml files in drawable folder, and you will be able to retrieve them using R.drawable.names

like image 128
Dany Pop Avatar answered Sep 30 '22 18:09

Dany Pop