I have two .so files that I need to be packaged with an apklib, with this structure:
- libs
-- armeabi
--- libvinit.so
-- armeabi-v7a
--- libvinit.so
I know I can use install-file to upload this to my local repo and declare them as dependencies in my pom, but the problem is that they have the same name, and are inside different folders, which is important. How do I ensure that when Maven packages the apklib that this structure will be enforced?