I need to maintain some duplication into my Android App (in Android Studio) by having some resources in "res/values-iw/" and copy the exact content of that folder to a folder named "res/values-he/". The reason is explained here.
I saw that gradle has a copy function but I have no idea with what task it would be better to wire it (and I guess as doFirst)?
Also, is it possible to not have that copied folder in my original res folder as I don't really need to see it all the time beside the original one, for instance in /build/ folder for build time? That way the copied folder will always be an up-to-date copy of the original "/res/values-iw" folder.
Thanks in advance, Alex