I created a project in android studio using Kotlin
I try now to organise my files in the "res" area.
in drawable, there is a lot of png files ( icons used in my app ),
and a lot of custom controls: xml
files, using shape, solid, stoke...
when I try to create a new resource directory, using "resource type" = drawable : it does not compile : "shape" "solid", etc... are not recognized anymore during compilation. android studio require me to put ALL my shape in drawable folder, which start to be a big mess.
how can I add several folder in res area.
I want to separate properly the icons, the xml
files in separate folder ?
thanks for any help.