Let's say that I have 2 projects with that use the same images.
All pictures are stored in folders:
/pictures/set1/
/pictures/set2/
/pictures/set3/
/pictures/set4/
/pictures/set5/
Project 1 needs:
/assets/pictures/set1/
/assets/pictures/set5/
Project 2 needs:
/assets/pictures/set2/
/assets/pictures/set5/
Currently: I copy all images to the /assets/ folder. This duplicates my images, and is more difficult to manage after upgrading the images.
Is there a way I can share those images, and only build my app with the resources I need? This without including them in both projects manually?