Is it possible and if so how do you use/reference the .so version of the cocos2d-x library instead of the libcocos2dx.jar as most tutorials tell you to do. ie cocos2d-x has some project directory called Android and there's a project there with java code that will compile and create a libcocos2dx.jar file which I can then reference in my own project.
But my question is why reference .jar java library instead of .so library, so how do I reference in my own project so that I use something like libcocos2dx.so instead of referencing library project libcocos2dx.jar?
I guess I'm thinking the performance will be better if I use .so native library.