I need some advice. I'm trying to use oRTP, which is a C library, in my Android app. I have the source for oRTP. As far as I can tell what I need to do is to compile oRTP into a static library using ndk-build. Then I need to write a C wrapper around libortp where the functions are named according to the JNI's conventions. What I need to know is:
- Is the Android.mk file here supposed to compile the library correctly? Because running ndk-build on it doesn't work (no output, no files created).
- Is the procedure I outlined above correct or is there a simpler way?