0 down vote favorite I have project that compiles and links fine when using Eclipse IDE. This project uses some external jar files and also uses some of JNI ( .so ) libraries.
They are all located in the libs/ directory of my project. How should my pom.xml file look like in order for all the jar files in libs/ folder and the shared objects are included in the APK. My libs directory looks something like this: libs/ ├── mydevicelib.jar ├── armeabi │ ├── libdevice.so ├── armeabi-v7a │ ├── libdevice.so │ ├── libcmiris.so ├── libcommon.jar My mvn install works it creates the apk file but whenever I try to run it, I get - java.lang.ClassNotFoundException: Didn't find class XXX errors I am using maven 3.0.5 Any sample pom.xml file that works with .so / jar file in libs directory would be appreciated. Unfortunately way things are setup we can't setup central repo where we can commit .so & jar files -Subodh --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
