Android NDK import-module / code reuse
问题 Morning! I've created a small NDK project which allows dynamic serialisation of objects between Java and C++ through JNI. The logic works like this: Bean -> JavaCInterface.Java -> JavaCInterface.cpp -> JavaCInterface.java -> Bean The problem is I want to use this functionality in other projects. I separated out the test code from the project and created a "Tester" project. The tester project sends a Java object through to C++ which then echo's it back to the Java layer. I thought linking