I'm working on a java android project. this project requires to use specific commands. these commands are all developed in c++/c but I've been given two files (.jar and .so) that are supposed to "turn them into" java, so I can use them in my java android project.
The thing is, what am I supposed to do with these 2 files?? I've read a lot of stuff (mostly about creating the .jar and .so, but I don't care about this step, for I already have the 2 files)
I tried to import the .jar (import external lib), I tried to add the .so via the static loading : //static { // System.loadLibrary("MySoFile"); // } All I get is a stack overflow error or a problem with the DEX file...
Has anybody ever tried to do this?? I don't seem to get the point here...all I want to do is being able to use the commands in the .jar file.... ://
thanks in advance!!