I've checked lots of posts on stackoverflow, none of them worked so far. So I have an APK that depends on a bunch of AARs, one of the AAR has 10 audio files that I do not need. Since I can't remove the dependency directly because I need some APIs in it, I want to make sure those audio fils don't get built into the APK.
The way I check if audio files get built into or not is by running this command:
zipinfo MyApk.apk | grep .mp3
Does anyone know how to exclude these audio fils from my dependency AARs?