Maybe the title is a little bit confusing , but I will try to explain
I have an app with a lot of audio files keep in raw
resource folder like this
so those audio files are big , and language specific. I'm using app bundle , and its force me to have this base raw
folder.
So now every apk generated for specific language has both base and language specific raws, and my apk is twice as big as it should be
Is there a way to prevent adding raw-s from base folder to final apk ?
regards Wojtek
EDIT: I found cheat solution :/ I don't like it but it seems to work.
I have added a resConfig
for all suported languages and in base raw folder I've added a dummy empty files 1 KB. Tested on different languages and it works, but it is not the kind of solution I'm feeling fine with :/