I'm trying to add the card.io native .so libraries to my project using maven (I can upload it on a local nexus server), however what I'm not sure about is how to go about adding the .so files and folder hirearchy. I can't seem to find any info online.
Thanks
If I understand your problem correctly, I think you need to add the .so files into a folder called 'libs' and then add the line:
<nativeLibrariesDirectory>${project.basedir}/libs</nativeLibrariesDirectory>in your pom file inside the
<configuration>tag of your android-maven-plugin.For more details, please have a look at this similar issue